Module: FunTranslations::Request
Overview
This module contains methods to perform HTTP requests
Constant Summary
Constants included from Connection
Instance Method Summary collapse
-
#post(path, client, params = {}) ⇒ Object
Performs an HTTP post request.
Methods included from Connection
Instance Method Details
#post(path, client, params = {}) ⇒ Object
Performs an HTTP post request
12 13 14 15 16 |
# File 'lib/fun_translations/request.rb', line 12 def post(path, client, params = {}) respond_with( connection(client).post(path, params) ) end |