Object
# File lib/httparty/response.rb, line 6 def initialize(header) @header = header end
# File lib/httparty/response.rb, line 10 def ==(other) @header == other end
# File lib/httparty/response.rb, line 14 def inspect @header.inspect end
# File lib/httparty/response.rb, line 18 def method_missing(name, *args, &block) if @header.respond_to?(name) @header.send(name, *args, &block) else super end end
# File lib/httparty/response.rb, line 26 def respond_to?(method) super || @header.respond_to?(method) end
[Validate]
Generated with the Darkfish Rdoc Generator 2.