method

render_partial

rails latest stable - Class: ActionView::Partials::PartialRenderer

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

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