1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00
rest-client--rest-client/lib/restclient/response.rb

24 lines
445 B
Ruby

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