Sha256: abb755b2fb2e4c3946858b48297f6909e8ddd5a5567ff97429549685fa28c530
Contents?: true
Size: 555 Bytes
Versions: 1
Compression:
Stored size: 555 Bytes
Contents
require 'mtgox/client' module MtGox class << self attr_accessor :name, :pass def configure yield self end end # Alias for MtGox::Client.new # # @return [MtGox::Client] def self.new MtGox::Client.new end # Delegate to MtGox::Client def self.method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) end def self.respond_to?(method, include_private=false) new.respond_to?(method, include_private) || super(method, include_private) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mtgox-0.1.0 | lib/mtgox.rb |