class DogecoinClient

Constants

METHODS
VERSION

Public Class Methods

configuration() click to toggle source
# File lib/dogecoin_client.rb, line 15
def self.configuration
  @configuration ||=  Configuration.new
end
configure() { |configuration| ... } click to toggle source
# File lib/dogecoin_client.rb, line 19
def self.configure
  yield(configuration) if block_given?
end
new(options = {}) click to toggle source
# File lib/dogecoin_client.rb, line 6
def initialize(options = {})
  @client = DogecoinClient::Client.new(options)
end

Public Instance Methods

method_missing(name, *args) click to toggle source

Delegate everything to the 'real' Client

# File lib/dogecoin_client.rb, line 11
def method_missing(name, *args)
  @client.send(name, *args)
end