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

Returns a new instance of Cycle.



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

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

Instance Attribute Details

#valuesObject (readonly)

Returns the value of attribute values.



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

def values
  @values
end

Instance Method Details

#current_valueObject



426
427
428
# File 'lib/action_view/helpers/text_helper.rb', line 426

def current_value
  @values[previous_index].to_s
end

#resetObject



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

def reset
  @index = 0
end

#to_sObject



430
431
432
433
434
# File 'lib/action_view/helpers/text_helper.rb', line 430

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