Sha256: 2115581b24762ee6ca391481a976474e01dad7f5d75e6c002d8c29ce32e27828

Contents?: true

Size: 784 Bytes

Versions: 3

Compression:

Stored size: 784 Bytes

Contents

require "magellan/cli/version"
require "magellan/cli/i18n"

module Magellan
  module Cli
    autoload :Command  , "magellan/cli/command"

    autoload :Base     , "magellan/cli/base"
    autoload :Http     , "magellan/cli/http"
    autoload :Direct   , "magellan/cli/direct"
    autoload :Resources, "magellan/cli/resources"

    autoload :Login    , "magellan/cli/login"
    autoload :Ssl      , "magellan/cli/ssl"

    autoload :Error     , "magellan/cli/errors"
    autoload :LoginError, "magellan/cli/errors"

    autoload :FileAccess, "magellan/cli/file_access"
    JSON_HEADER = {
      "Content-Type" => "application/json"
    }.freeze

    autoload :ReferenceGenerator, "magellan/cli/reference_generator"

    class << self
      attr_accessor :last_result
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
magellan-cli-0.4.2 lib/magellan/cli.rb
magellan-cli-0.4.1 lib/magellan/cli.rb
magellan-cli-0.4.0 lib/magellan/cli.rb