Method: Keymaker::Service#get

Defined in:
lib/keymaker/service.rb

#get(url, body) ⇒ Object

HTTP Verbs



118
119
120
121
# File 'lib/keymaker/service.rb', line 118

def get(url, body)
  faraday_response = connection.get(parse_url(url), body)
  Keymaker::Response.new(self, faraday_response)
end