method
render_partial_collection_with_known_partial_path
v2.1.0 -
Show latest stable
- Class:
ActionView::Partials
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