Class: Micropub::Response
- Inherits:
-
Object
- Object
- Micropub::Response
- Defined in:
- lib/micropub/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
Instance Method Summary collapse
-
#initialize(response) ⇒ Response
constructor
A new instance of Response.
- #successful? ⇒ Boolean
Constructor Details
#initialize(response) ⇒ Response
Returns a new instance of Response.
4 5 6 7 8 |
# File 'lib/micropub/response.rb', line 4 def initialize(response) @status = response.status @body = response.body @location = response.headers["Location"] end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
3 4 5 |
# File 'lib/micropub/response.rb', line 3 def body @body end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
3 4 5 |
# File 'lib/micropub/response.rb', line 3 def location @location end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
3 4 5 |
# File 'lib/micropub/response.rb', line 3 def status @status end |
Instance Method Details
#successful? ⇒ Boolean
10 11 12 |
# File 'lib/micropub/response.rb', line 10 def successful? (201...399).include? status end |