Class: ActionView::CollectionRenderer::MixedCollectionIterator
- Inherits:
-
CollectionIterator
- Object
- CollectionIterator
- ActionView::CollectionRenderer::MixedCollectionIterator
- Defined in:
- lib/action_view/renderer/collection_renderer.rb
Overview
:nodoc:
Instance Method Summary collapse
- #each_with_info ⇒ Object
-
#initialize(collection, paths) ⇒ MixedCollectionIterator
constructor
A new instance of MixedCollectionIterator.
Methods inherited from CollectionIterator
Constructor Details
#initialize(collection, paths) ⇒ MixedCollectionIterator
Returns a new instance of MixedCollectionIterator.
93 94 95 96 |
# File 'lib/action_view/renderer/collection_renderer.rb', line 93 def initialize(collection, paths) super(collection) @paths = paths end |
Instance Method Details
#each_with_info ⇒ Object
98 99 100 101 |
# File 'lib/action_view/renderer/collection_renderer.rb', line 98 def each_with_info return enum_for(:each_with_info) unless block_given? @collection.each_with_index { |o, i| yield(o, @paths[i]) } end |