Methods
Public Class
Public Instance
Classes and Modules
Public Class methods
new(request, status, version, headers)
[show source]
# File lib/httpx/response.rb 27 def initialize(request, status, version, headers) 28 @request = request 29 @options = request.options 30 @version = version 31 @status = Integer(status) 32 @headers = @options.headers_class.new(headers) 33 @body = @options.response_body_class.new(self, @options) 34 @finished = complete? 35 end
Public Instance methods
bodyless?()
[show source]
# File lib/httpx/response.rb 58 def bodyless? 59 @request.verb == "HEAD" || 60 no_data? 61 end
complete?()
[show source]
# File lib/httpx/response.rb 63 def complete? 64 bodyless? || (@request.verb == "CONNECT" && @status == 200) 65 end
content_type()
[show source]
# File lib/httpx/response.rb 45 def content_type 46 @content_type ||= ContentType.new(@headers["content-type"]) 47 end
error()
:nocov:
[show source]
# File lib/httpx/response.rb 77 def error 78 return if @status < 400 79 80 HTTPError.new(self) 81 end
finish!()
[show source]
# File lib/httpx/response.rb 53 def finish! 54 @finished = true 55 @headers.freeze 56 end
inspect()
:nocov:
[show source]
# File lib/httpx/response.rb 68 def inspect 69 "#<Response:#{object_id} " \ 70 "HTTP/#{version} " \ 71 "@status=#{@status} " \ 72 "@headers=#{@headers} " \ 73 "@body=#{@body.bytesize}>" 74 end
json(*args)
[show source]
# File lib/httpx/response.rb 89 def json(*args) 90 decode(Transcoder::JSON, *args) 91 end
merge_headers(h)
[show source]
# File lib/httpx/response.rb 37 def merge_headers(h) 38 @headers = @headers.merge(h) 39 end
raise_for_status()
[show source]
# File lib/httpx/response.rb 83 def raise_for_status 84 return self unless (err = error) 85 86 raise err 87 end