Class: ActionView::AbstractRenderer::RenderedTemplate
- Defined in:
- actionview/lib/action_view/renderer/abstract_renderer.rb
Overview
:nodoc:
Constant Summary collapse
- EMPTY_SPACER =
Struct.new(:body).new
Instance Attribute Summary collapse
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#template ⇒ Object
readonly
Returns the value of attribute template.
Instance Method Summary collapse
- #format ⇒ Object
-
#initialize(body, template) ⇒ RenderedTemplate
constructor
A new instance of RenderedTemplate.
Constructor Details
#initialize(body, template) ⇒ RenderedTemplate
Returns a new instance of RenderedTemplate.
64 65 66 67 |
# File 'actionview/lib/action_view/renderer/abstract_renderer.rb', line 64 def initialize(body, template) @body = body @template = template end |
Instance Attribute Details
#body ⇒ Object (readonly)
Returns the value of attribute body
62 63 64 |
# File 'actionview/lib/action_view/renderer/abstract_renderer.rb', line 62 def body @body end |
#template ⇒ Object (readonly)
Returns the value of attribute template
62 63 64 |
# File 'actionview/lib/action_view/renderer/abstract_renderer.rb', line 62 def template @template end |
Instance Method Details
#format ⇒ Object
69 70 71 |
# File 'actionview/lib/action_view/renderer/abstract_renderer.rb', line 69 def format template.format end |