Class: CassetteRack::Response
- Inherits:
-
Object
- Object
- CassetteRack::Response
- Defined in:
- lib/cassette-rack/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#method ⇒ Object
readonly
Returns the value of attribute method.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(response) ⇒ Response
constructor
A new instance of Response.
- #response_headers ⇒ Object
- #status_code ⇒ Object
Constructor Details
#initialize(response) ⇒ Response
Returns a new instance of Response.
5 6 7 8 9 |
# File 'lib/cassette-rack/response.rb', line 5 def initialize(response) @status = response.status @headers = response.headers @body = response.body end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
3 4 5 |
# File 'lib/cassette-rack/response.rb', line 3 def body @body end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
3 4 5 |
# File 'lib/cassette-rack/response.rb', line 3 def headers @headers end |
#method ⇒ Object (readonly)
Returns the value of attribute method.
3 4 5 |
# File 'lib/cassette-rack/response.rb', line 3 def method @method end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
3 4 5 |
# File 'lib/cassette-rack/response.rb', line 3 def status @status end |
Instance Method Details
#response_headers ⇒ Object
15 16 17 |
# File 'lib/cassette-rack/response.rb', line 15 def response_headers headers end |
#status_code ⇒ Object
11 12 13 |
# File 'lib/cassette-rack/response.rb', line 11 def status_code status end |