Class: Pina::RestAdapter::Response
- Inherits:
-
Object
- Object
- Pina::RestAdapter::Response
- Defined in:
- lib/pina/rest_adapter.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#status_code ⇒ Object
Returns the value of attribute status_code.
Instance Method Summary collapse
-
#initialize(status_code, body) ⇒ Response
constructor
A new instance of Response.
- #ok? ⇒ Boolean
- #to_hash ⇒ Object
Constructor Details
#initialize(status_code, body) ⇒ Response
Returns a new instance of Response.
119 120 121 122 |
# File 'lib/pina/rest_adapter.rb', line 119 def initialize(status_code, body) @status_code = status_code @body = body end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
117 118 119 |
# File 'lib/pina/rest_adapter.rb', line 117 def body @body end |
#status_code ⇒ Object
Returns the value of attribute status_code.
117 118 119 |
# File 'lib/pina/rest_adapter.rb', line 117 def status_code @status_code end |
Instance Method Details
#ok? ⇒ Boolean
124 125 126 |
# File 'lib/pina/rest_adapter.rb', line 124 def ok? status_code == 200 || status_code == 201 end |
#to_hash ⇒ Object
128 129 130 |
# File 'lib/pina/rest_adapter.rb', line 128 def to_hash ActiveSupport::JSON.decode(body) end |