Class: Wrest::Curl::Get
Instance Attribute Summary
Attributes inherited from Request
#auth_type, #body, #connection, #file_name, #follow_redirects, #follow_redirects_limit, #headers, #http_request, #multipart, #parameters, #password, #timeout, #uri, #username
Instance Method Summary (collapse)
-
- (Get) initialize(wrest_uri, parameters = {}, headers = {}, options = {})
constructor
A new instance of Get.
Methods inherited from Request
Constructor Details
- (Get) initialize(wrest_uri, parameters = {}, headers = {}, options = {})
A new instance of Get
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/wrest/curl/get.rb', line 12 def initialize(wrest_uri, parameters = {}, headers = {}, = {}) super( wrest_uri, :get, parameters, nil, headers, ) end |