module CirroIO::Client

Constants

VERSION

Public Class Methods

configuration() click to toggle source
# File lib/cirro_io/client.rb, line 31
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/cirro_io/client.rb, line 26
def self.configure
  yield configuration if block_given?
  Base.site = "#{configuration.site}/#{configuration.api_version}"
end