class RestClient::Response
the body, but on the occassion you want to fetch the headers you can:
these. 99% of the time you’re making a rest call all you care about is
The response from RestClient looks like a string, but is actually one of
def initialize(string, net_http_res)
def initialize(string, net_http_res) @net_http_res = net_http_res super(string || "") end