Represents the response from the HTTP server.
[Source]
# File lib/patron/response.rb, line 31 31: def initialize 32: @headers = {} 33: end
# File lib/patron/response.rb, line 37 37: def inspect 38: # Avoid spamming the console with the header and body data 39: "#<Patron::Response @status_line='#{@status_line}'>" 40: end
[Validate]