method

render_partial_collection_with_known_partial_path

rails latest stable - Class: ActionView::Partials

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.

render_partial_collection_with_known_partial_path(collection, partial_path, local_assigns)
private

No documentation available.

# File actionpack/lib/action_view/partials.rb, line 139
      def render_partial_collection_with_known_partial_path(collection, partial_path, local_assigns)
        template = ActionView::PartialTemplate.new(self, partial_path, nil, local_assigns)
        collection.map do |element|
          template.render_member(element)
        end
      end