method

collection_without_template

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: PartialRenderer
collection_without_template() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/renderer/partial_renderer.rb, line 405 def collection_without_template view, locals, collection_data = @view, @locals, @collection_data cache = {} keys = @locals.keys index = -1 @collection.map do |object| index += 1 path, as, counter = collection_data[index] locals[as] = object locals[counter] = index template = (cache[path] ||= find_template(path, keys + [as, counter])) template.render(view, locals) end end
Register or log in to add new notes.