Class: Everdeen::Response
- Inherits:
-
Object
- Object
- Everdeen::Response
- Defined in:
- lib/everdeen/response.rb
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
- #body_encoding ⇒ Object
-
#initialize(args = {}) ⇒ Response
constructor
A new instance of Response.
- #to_hash ⇒ Object
Constructor Details
#initialize(args = {}) ⇒ Response
Returns a new instance of Response.
5 6 7 8 9 |
# File 'lib/everdeen/response.rb', line 5 def initialize(args = {}) Hash(args).each do |key, value| instance_variable_set("@#{key}", value) end end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
3 4 5 |
# File 'lib/everdeen/response.rb', line 3 def body @body end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
3 4 5 |
# File 'lib/everdeen/response.rb', line 3 def headers @headers end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
3 4 5 |
# File 'lib/everdeen/response.rb', line 3 def status @status end |
Instance Method Details
#body_encoding ⇒ Object
11 12 13 |
# File 'lib/everdeen/response.rb', line 11 def body_encoding @body_encoding.to_s end |
#to_hash ⇒ Object
15 16 17 18 19 20 21 22 |
# File 'lib/everdeen/response.rb', line 15 def to_hash { status: status, headers: headers, body: body, body_encoding: body_encoding } end |