Parent

Included Modules

Files

HTTParty::Response::Headers

Public Class Methods

new(header) click to toggle source
   # File lib/httparty/response.rb, line 6
6:       def initialize(header)
7:         @header = header
8:       end

Public Instance Methods

==(other) click to toggle source
    # File lib/httparty/response.rb, line 10
10:       def ==(other)
11:         @header == other
12:       end
inspect() click to toggle source
    # File lib/httparty/response.rb, line 14
14:       def inspect
15:         @header.inspect
16:       end
method_missing(name, *args, &block) click to toggle source
    # File lib/httparty/response.rb, line 18
18:       def method_missing(name, *args, &block)
19:         if @header.respond_to?(name)
20:           @header.send(name, *args, &block)
21:         else
22:           super
23:         end
24:       end
respond_to?(method) click to toggle source
    # File lib/httparty/response.rb, line 26
26:       def respond_to?(method)
27:         super || @header.respond_to?(method)
28:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.