Class: ActionView::Helpers::TextHelper::Cycle

Inherits:
Object
  • Object
show all
Defined in:
actionview/lib/action_view/helpers/text_helper.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(first_value, *values) ⇒ Cycle

Returns a new instance of Cycle.



409
410
411
412
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 409

def initialize(first_value, *values)
  @values = values.unshift(first_value)
  reset
end

Instance Attribute Details

#valuesObject (readonly)

Returns the value of attribute values



407
408
409
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 407

def values
  @values
end

Instance Method Details

#current_valueObject



418
419
420
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 418

def current_value
  @values[previous_index].to_s
end

#resetObject



414
415
416
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 414

def reset
  @index = 0
end

#to_sObject



422
423
424
425
426
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 422

def to_s
  value = @values[@index].to_s
  @index = next_index
  value
end