Sha256: 6fcff5aeba03bfc3f3d20a0250412f5ffe1a1e2eb772c228f19e4e4b373f5b83

Contents?: true

Size: 382 Bytes

Versions: 3

Compression:

Stored size: 382 Bytes

Contents

require 'smartdc/version'
require 'smartdc/client'
require 'smartdc/request'
require 'smartdc/response'
require 'smartdc/error'

module Smartdc
  def self.new(options={})
    Smartdc::Client.new(options)
  end

  def self.config=(options={})
    @cli = Smartdc::Client.new(options)
    @config = options
  end

  def self.config
    @config
  end

  def self.cli
    @cli
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
smartdc-1.3.0 lib/smartdc.rb
smartdc-1.2.2 lib/smartdc.rb
smartdc-1.2.1 lib/smartdc.rb