Method: Clever::Connection#execute

Defined in:
lib/clever/connection.rb

#execute(path, method = :get, params = nil, body = nil) ⇒ Object



12
13
14
# File 'lib/clever/connection.rb', line 12

def execute(path, method = :get, params = nil, body = nil)
  Response.new(raw_request(path, method, params, body))
end