Module: GrooveHQ::Client::Connection

Included in:
GrooveHQ::Client
Defined in:
lib/groovehq/client/connection.rb

Instance Method Summary collapse

Instance Method Details

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



19
20
21
# File 'lib/groovehq/client/connection.rb', line 19

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

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



7
8
9
# File 'lib/groovehq/client/connection.rb', line 7

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

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



11
12
13
# File 'lib/groovehq/client/connection.rb', line 11

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

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



15
16
17
# File 'lib/groovehq/client/connection.rb', line 15

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