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.



258
259
260
261
# File 'lib/action_view/helpers/text_helper.rb', line 258

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

Instance Attribute Details

#valuesObject (readonly)

Returns the value of attribute values.



256
257
258
# File 'lib/action_view/helpers/text_helper.rb', line 256

def values
  @values
end

Instance Method Details

#resetObject



263
264
265
# File 'lib/action_view/helpers/text_helper.rb', line 263

def reset
  @index = 0
end

#to_sObject



267
268
269
270
271
# File 'lib/action_view/helpers/text_helper.rb', line 267

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