Class: HTTParty::Response

Inherits:
BlankSlate show all
Defined in:
lib/httparty/response.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(delegate, body, code, headers = {}) ⇒ Response

Returns a new instance of Response.



6
7
8
9
10
11
# File 'lib/httparty/response.rb', line 6

def initialize(delegate, body, code, headers={})
  @delegate = delegate
  @body = body
  @code = code
  @headers = headers
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args, &block) ⇒ Object



13
14
15
# File 'lib/httparty/response.rb', line 13

def method_missing(name, *args, &block)
  @delegate.send(name, *args, &block)
end

Instance Attribute Details

#bodyObject

Returns the value of attribute body.



3
4
5
# File 'lib/httparty/response.rb', line 3

def body
  @body
end

#codeObject

Returns the value of attribute code.



3
4
5
# File 'lib/httparty/response.rb', line 3

def code
  @code
end

#delegateObject (readonly)

Returns the value of attribute delegate.



4
5
6
# File 'lib/httparty/response.rb', line 4

def delegate
  @delegate
end

#headersObject

Returns the value of attribute headers.



3
4
5
# File 'lib/httparty/response.rb', line 3

def headers
  @headers
end