Module: RandomApi::Request

Included in:
API
Defined in:
lib/randomapi/request.rb

Overview

Defines HTTP request methods

Instance Method Summary collapse

Instance Method Details

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

Perform an HTTP DELETE request



22
23
24
# File 'lib/randomapi/request.rb', line 22

def delete(path, options={}, raw=false)
  make_request(:delete, path, options, raw)
end

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

Perform an HTTP GET request



7
8
9
# File 'lib/randomapi/request.rb', line 7

def get(path, options={}, raw=false)
  make_request(:get, path, options, raw)
end

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

Perform an HTTP POST request



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

def post(path, options={}, raw=false)
  make_request(:post, path, options, raw)
end

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

Perform an HTTP PUT request



17
18
19
# File 'lib/randomapi/request.rb', line 17

def put(path, options={}, raw=false)
  make_request(:put, path, options, raw)
end