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

Inherits:
Object
  • Object
show all
Defined in:
actionpack/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.



367
368
369
370
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 367

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

Instance Attribute Details

#valuesObject (readonly)

Returns the value of attribute values



365
366
367
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 365

def values
  @values
end

Instance Method Details

#current_valueObject



376
377
378
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 376

def current_value
  @values[previous_index].to_s
end

#resetObject



372
373
374
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 372

def reset
  @index = 0
end

#to_sObject



380
381
382
383
384
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 380

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