method

add_object_to_local_assigns!

rails latest stable - Class: ActionView::PartialTemplate

Method deprecated or moved

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

add_object_to_local_assigns!(object)
private

No documentation available.

# File actionpack/lib/action_view/partial_template.rb, line 41
    def add_object_to_local_assigns!(object)
      @locals[:object] ||=
        @locals[@variable_name] ||=
          if object.is_a?(ActionView::Base::ObjectWrapper)
            object.value
          else
            object
          end || @view.controller.instance_variable_get("@#{variable_name}")
    end