method
render_partial
rails latest stable - Class:
ActionView::Partials::PartialRenderer
render_partial(object = @object)public
No documentation available.
# File actionpack/lib/action_view/render/partials.rb, line 327
def render_partial(object = @object)
locals, view, template, block = @locals, @view, @template, @block
object ||= locals[template.variable_name]
locals[@options[:as] || template.variable_name] = object
template.render(view, locals) do |*name|
view._layout_for(*name, &block)
end
end