Class: ActionView::Helpers::TextHelper::Cycle
- Inherits:
-
Object
- Object
- ActionView::Helpers::TextHelper::Cycle
- Defined in:
- actionpack/lib/action_view/helpers/text_helper.rb
Overview
:nodoc:
Instance Attribute Summary (collapse)
-
- (Object) values
readonly
Returns the value of attribute values.
Instance Method Summary (collapse)
- - (Object) current_value
-
- (Cycle) initialize(first_value, *values)
constructor
A new instance of Cycle.
- - (Object) reset
- - (Object) to_s
Constructor Details
- (Cycle) initialize(first_value, *values)
A new instance of Cycle
398 399 400 401 |
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 398 def initialize(first_value, *values) @values = values.unshift(first_value) reset end |
Instance Attribute Details
- (Object) values (readonly)
Returns the value of attribute values
396 397 398 |
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 396 def values @values end |
Instance Method Details
- (Object) current_value
407 408 409 |
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 407 def current_value @values[previous_index].to_s end |
- (Object) reset
403 404 405 |
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 403 def reset @index = 0 end |
- (Object) to_s
411 412 413 414 415 |
# File 'actionpack/lib/action_view/helpers/text_helper.rb', line 411 def to_s value = @values[@index].to_s @index = next_index return value end |