Module: JustGiving::Request

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

Instance Method Summary collapse

Instance Method Details

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



3
4
5
# File 'lib/just_giving/request.rb', line 3

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

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



11
12
13
# File 'lib/just_giving/request.rb', line 11

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

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



15
16
17
# File 'lib/just_giving/request.rb', line 15

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

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



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

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