Class: Heroics::Link::CachedResponse

Inherits:
Object
  • Object
show all
Defined in:
lib/heroics/link.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status, body, headers) ⇒ CachedResponse

Returns a new instance of CachedResponse.



156
157
158
159
160
# File 'lib/heroics/link.rb', line 156

def initialize(status, body, headers)
  @status = status
  @body = body
  @headers = headers
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



155
156
157
# File 'lib/heroics/link.rb', line 155

def body
  @body
end

#headersObject (readonly)

Returns the value of attribute headers.



155
156
157
# File 'lib/heroics/link.rb', line 155

def headers
  @headers
end

#statusObject (readonly)

Returns the value of attribute status.



155
156
157
# File 'lib/heroics/link.rb', line 155

def status
  @status
end