Class: ActionView::PartialIteration

Inherits:
Object
  • Object
show all
Defined in:
lib/action_view/renderer/partial_renderer.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(size) ⇒ PartialIteration

Returns a new instance of PartialIteration.



14
15
16
17
# File 'lib/action_view/renderer/partial_renderer.rb', line 14

def initialize(size)
  @size  = size
  @index = 0
end

Instance Attribute Details

#indexObject (readonly)

The current iteration of the partial.



12
13
14
# File 'lib/action_view/renderer/partial_renderer.rb', line 12

def index
  @index
end

#sizeObject (readonly)

The number of iterations that will be done by the partial.



9
10
11
# File 'lib/action_view/renderer/partial_renderer.rb', line 9

def size
  @size
end

Instance Method Details

#first?Boolean

Check if this is the first iteration of the partial.

Returns:

  • (Boolean)


20
21
22
# File 'lib/action_view/renderer/partial_renderer.rb', line 20

def first?
  index == 0
end

#iterate!Object

:nodoc:



29
30
31
# File 'lib/action_view/renderer/partial_renderer.rb', line 29

def iterate! # :nodoc:
  @index += 1
end

#last?Boolean

Check if this is the last iteration of the partial.

Returns:

  • (Boolean)


25
26
27
# File 'lib/action_view/renderer/partial_renderer.rb', line 25

def last?
  index == size - 1
end