Class: Httply::Response
- Inherits:
-
Object
- Object
- Httply::Response
- Defined in:
- lib/httply/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#response ⇒ Object
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(response) ⇒ Response
constructor
A new instance of Response.
Constructor Details
#initialize(response) ⇒ Response
Returns a new instance of Response.
5 6 7 8 |
# File 'lib/httply/response.rb', line 5 def initialize(response) self.response = response self.body = response.body end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
3 4 5 |
# File 'lib/httply/response.rb', line 3 def body @body end |
#response ⇒ Object
Returns the value of attribute response.
3 4 5 |
# File 'lib/httply/response.rb', line 3 def response @response end |