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

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

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(first_value, *values) ⇒ Cycle



492
493
494
495
# File 'lib/action_view/helpers/text_helper.rb', line 492

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

Instance Attribute Details

#valuesObject (readonly)

Returns the value of attribute values.



490
491
492
# File 'lib/action_view/helpers/text_helper.rb', line 490

def values
  @values
end

Instance Method Details

#current_valueObject



501
502
503
# File 'lib/action_view/helpers/text_helper.rb', line 501

def current_value
  @values[previous_index].to_s
end

#resetObject



497
498
499
# File 'lib/action_view/helpers/text_helper.rb', line 497

def reset
  @index = 0
end

#to_sObject



505
506
507
508
509
# File 'lib/action_view/helpers/text_helper.rb', line 505

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