Class: SiteHub::Response
- Inherits:
-
Rack::Response
- Object
- Rack::Response
- SiteHub::Response
- Defined in:
- lib/sitehub/response.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#time ⇒ Object
readonly
Returns the value of attribute time.
Instance Method Summary collapse
-
#initialize(body, status, headers) ⇒ Response
constructor
A new instance of Response.
Constructor Details
#initialize(body, status, headers) ⇒ Response
Returns a new instance of Response.
4 5 6 7 |
# File 'lib/sitehub/response.rb', line 4 def initialize(body, status, headers) super @time = Time.now end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body.
3 4 5 |
# File 'lib/sitehub/response.rb', line 3 def body @body end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
3 4 5 |
# File 'lib/sitehub/response.rb', line 3 def status @status end |
#time ⇒ Object (readonly)
Returns the value of attribute time.
3 4 5 |
# File 'lib/sitehub/response.rb', line 3 def time @time end |