Module: LondonCab::Auth::Faraday::Request

Included in:
Client
Defined in:
lib/london_cab_auth/faraday/request.rb

Instance Method Summary collapse

Instance Method Details

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

[View source]

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

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

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

[View source]

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

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

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

[View source]

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

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

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

[View source]

13
14
15
# File 'lib/london_cab_auth/faraday/request.rb', line 13

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