Class: ActionView::PartialIteration
- Inherits:
-
Object
- Object
- ActionView::PartialIteration
- Defined in:
- lib/action_view/renderer/partial_renderer.rb
Instance Attribute Summary collapse
-
#index ⇒ Object
readonly
The current iteration of the partial.
-
#size ⇒ Object
readonly
The number of iterations that will be done by the partial.
Instance Method Summary collapse
-
#first? ⇒ Boolean
Check if this is the first iteration of the partial.
-
#initialize(size) ⇒ PartialIteration
constructor
A new instance of PartialIteration.
-
#iterate! ⇒ Object
:nodoc:.
-
#last? ⇒ Boolean
Check if this is the last iteration of the partial.
Constructor Details
#initialize(size) ⇒ PartialIteration
Returns a new instance of PartialIteration.
12 13 14 15 |
# File 'lib/action_view/renderer/partial_renderer.rb', line 12 def initialize(size) @size = size @index = 0 end |
Instance Attribute Details
#index ⇒ Object (readonly)
The current iteration of the partial.
10 11 12 |
# File 'lib/action_view/renderer/partial_renderer.rb', line 10 def index @index end |
#size ⇒ Object (readonly)
The number of iterations that will be done by the partial.
7 8 9 |
# File 'lib/action_view/renderer/partial_renderer.rb', line 7 def size @size end |
Instance Method Details
#first? ⇒ Boolean
Check if this is the first iteration of the partial.
18 19 20 |
# File 'lib/action_view/renderer/partial_renderer.rb', line 18 def first? index == 0 end |
#iterate! ⇒ Object
:nodoc:
27 28 29 |
# File 'lib/action_view/renderer/partial_renderer.rb', line 27 def iterate! # :nodoc: @index += 1 end |
#last? ⇒ Boolean
Check if this is the last iteration of the partial.
23 24 25 |
# File 'lib/action_view/renderer/partial_renderer.rb', line 23 def last? index == size - 1 end |