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

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



373
374
375
376
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 373

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

Instance Attribute Details

#valuesObject (readonly)

Returns the value of attribute values



371
372
373
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 371

def values
  @values
end

Instance Method Details

#current_valueObject



382
383
384
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 382

def current_value
  @values[previous_index].to_s
end

#resetObject



378
379
380
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 378

def reset
  @index = 0
end

#to_sObject



386
387
388
389
390
# File 'actionview/lib/action_view/helpers/text_helper.rb', line 386

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