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.



395
396
397
398
# File 'lib/action_view/helpers/text_helper.rb', line 395

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

Instance Attribute Details

#valuesObject (readonly)

Returns the value of attribute values.



393
394
395
# File 'lib/action_view/helpers/text_helper.rb', line 393

def values
  @values
end

Instance Method Details

#resetObject



400
401
402
# File 'lib/action_view/helpers/text_helper.rb', line 400

def reset
  @index = 0
end

#to_sObject



404
405
406
407
408
# File 'lib/action_view/helpers/text_helper.rb', line 404

def to_s
  value = @values[@index].to_s
  @index = (@index + 1) % @values.size
  return value
end