Method: MtGox.method_missing

Defined in:
lib/mtgox.rb

.method_missing(method, *args, &block) ⇒ Object

Delegate to MtGox::Client



14
15
16
17
# File 'lib/mtgox.rb', line 14

def method_missing(method, *args, &block)
  return super unless new.respond_to?(method)
  new.send(method, *args, &block)
end