Class: ActionView::Helpers::TextHelper::Cycle
- Defined in:
 - actionview/lib/action_view/helpers/text_helper.rb
 
Overview
:nodoc:
Instance Attribute Summary collapse
- 
  
    
      #values  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute values.
 
Instance Method Summary collapse
- #current_value ⇒ Object
 - 
  
    
      #initialize(first_value, *values)  ⇒ Cycle 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Cycle.
 - #reset ⇒ Object
 - #to_s ⇒ Object
 
Constructor Details
#initialize(first_value, *values) ⇒ Cycle
Returns a new instance of Cycle.
      485 486 487 488  | 
    
      # File 'actionview/lib/action_view/helpers/text_helper.rb', line 485 def initialize(first_value, *values) @values = values.unshift(first_value) reset end  | 
  
Instance Attribute Details
#values ⇒ Object (readonly)
Returns the value of attribute values.
      483 484 485  | 
    
      # File 'actionview/lib/action_view/helpers/text_helper.rb', line 483 def values @values end  | 
  
Instance Method Details
#current_value ⇒ Object
      494 495 496  | 
    
      # File 'actionview/lib/action_view/helpers/text_helper.rb', line 494 def current_value @values[previous_index].to_s end  | 
  
#reset ⇒ Object
      490 491 492  | 
    
      # File 'actionview/lib/action_view/helpers/text_helper.rb', line 490 def reset @index = 0 end  | 
  
#to_s ⇒ Object
      498 499 500 501 502  | 
    
      # File 'actionview/lib/action_view/helpers/text_helper.rb', line 498 def to_s value = @values[@index].to_s @index = next_index value end  |