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

- (Cycle) initialize(first_value, *values)

A new instance of Cycle



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

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

Instance Attribute Details

- (Object) values (readonly)

Returns the value of attribute values



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

def values
  @values
end

Instance Method Details

- (Object) current_value



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

def current_value
  @values[previous_index].to_s
end

- (Object) reset



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

def reset
  @index = 0
end

- (Object) to_s



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

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