Class: Prest::Response
- Inherits:
-
Object
- Object
- Prest::Response
- Extended by:
- Forwardable
- Defined in:
- lib/prest/response.rb
Overview
Main wrapper class for Prest Response.
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(status, body, headers) ⇒ Response
constructor
A new instance of Response.
- #successful? ⇒ Boolean
Constructor Details
#initialize(status, body, headers) ⇒ Response
Returns a new instance of Response.
12 13 14 15 16 |
# File 'lib/prest/response.rb', line 12 def initialize(status, body, headers) @status = status @body = body @headers = headers end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
10 11 12 |
# File 'lib/prest/response.rb', line 10 def body @body end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
10 11 12 |
# File 'lib/prest/response.rb', line 10 def headers @headers end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
10 11 12 |
# File 'lib/prest/response.rb', line 10 def status @status end |
Instance Method Details
#successful? ⇒ Boolean
18 19 20 |
# File 'lib/prest/response.rb', line 18 def successful? @status.between?(100, 399) end |