Class: SC::Helpers::TextHelper::Cycle

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



225
226
227
228
# File 'lib/sproutcore/helpers/text_helper.rb', line 225

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

Instance Attribute Details

#valuesObject (readonly)

Returns the value of attribute values.



223
224
225
# File 'lib/sproutcore/helpers/text_helper.rb', line 223

def values
  @values
end

Instance Method Details

#resetObject



230
231
232
# File 'lib/sproutcore/helpers/text_helper.rb', line 230

def reset
  @index = 0
end

#to_sObject



234
235
236
237
238
# File 'lib/sproutcore/helpers/text_helper.rb', line 234

def to_s
  value = @values[@index].to_s
  @index = (@index + 1) % @values.size
  return value
end