Class: ActionView::Template::Renderable

Inherits:
Object
  • Object
show all
Defined in:
lib/action_view/template/renderable.rb

Overview

Action View Renderable Template for objects that respond to #render_in

Instance Method Summary collapse

Constructor Details

#initialize(renderable) ⇒ Renderable

:nodoc:



7
8
9
# File 'lib/action_view/template/renderable.rb', line 7

def initialize(renderable)
  @renderable = renderable
end

Instance Method Details

#formatObject



19
20
21
# File 'lib/action_view/template/renderable.rb', line 19

def format
  @renderable.format
end

#identifierObject



11
12
13
# File 'lib/action_view/template/renderable.rb', line 11

def identifier
  @renderable.class.name
end

#render(context, *args) ⇒ Object



15
16
17
# File 'lib/action_view/template/renderable.rb', line 15

def render(context, *args)
  @renderable.render_in(context)
end