Module: MtGox::Request

Included in:
Client
Defined in:
lib/mtgox/request.rb

Instance Method Summary collapse

Instance Method Details

#get(path, options = {}) ⇒ Object



5
6
7
# File 'lib/mtgox/request.rb', line 5

def get(path, options={})
  request(:get, path, options)
end

#post(path, options = {}) ⇒ Object



9
10
11
# File 'lib/mtgox/request.rb', line 9

def post(path, options={})
  request(:post, path, options)
end