Sha256: 30df5d0bf6e93df20106de20d59874b1def535894635cb03102f6915376a45c9
Contents?: true
Size: 540 Bytes
Versions: 39
Compression:
Stored size: 540 Bytes
Contents
require File.dirname(__FILE__) + '/mixin/response' module RestClient # The response from RestClient looks like a string, but is actually one of # these. 99% of the time you're making a rest call all you care about is # the body, but on the occassion you want to fetch the headers you can: # # RestClient.get('http://example.com').headers[:content_type] # class Response < String include RestClient::Mixin::Response def initialize(string, net_http_res) @net_http_res = net_http_res super(string || "") end end end
Version data entries
39 entries across 39 versions & 13 rubygems