
gems.rest-client-1.6.7.lib.restclient.response.rb Maven / Gradle / Ivy
The newest version!
module RestClient
# A Response from RestClient, you can access the response body, the code or the headers.
#
module Response
include AbstractResponse
attr_accessor :args, :body, :net_http_res
def body
self
end
def Response.create body, net_http_res, args
result = body || ''
result.extend Response
result.net_http_res = net_http_res
result.args = args
result
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy