Module: IEX::Cloud::Request

Included in:
Api::Client
Defined in:
lib/iex/cloud/request.rb

Instance Method Summary collapse

Instance Method Details

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



16
17
18
# File 'lib/iex/cloud/request.rb', line 16

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

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



4
5
6
# File 'lib/iex/cloud/request.rb', line 4

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

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



8
9
10
# File 'lib/iex/cloud/request.rb', line 8

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

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



12
13
14
# File 'lib/iex/cloud/request.rb', line 12

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