Class: ActionView::AbstractRenderer::RenderedTemplate

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#bodyObject (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

#templateObject (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

#formatObject



69
70
71
# File 'actionview/lib/action_view/renderer/abstract_renderer.rb', line 69

def format
  template.format
end