Class: When::V::Event::Enumerator::Step

Inherits:
Object
  • Object
show all
Defined in:
lib/when_exe/icalendar.rb

Overview

多重繰り返しの現在状態

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(date) ⇒ Step

Returns a new instance of Step.



1348
1349
1350
1351
# File 'lib/when_exe/icalendar.rb', line 1348

def initialize(date)
  @index = 0
  @date  = date.kind_of?(Array) ? date : [date]
end

Instance Attribute Details

#dateObject (readonly)

Returns the value of attribute date.



1329
1330
1331
# File 'lib/when_exe/icalendar.rb', line 1329

def date
  @date
end

#indexObject (readonly)

Returns the value of attribute index.



1328
1329
1330
# File 'lib/when_exe/icalendar.rb', line 1328

def index
  @index
end

Instance Method Details

#_current_dateObject



1332
1333
1334
# File 'lib/when_exe/icalendar.rb', line 1332

def _current_date
  return @date[@index]
end

#_incObject



1342
1343
1344
1345
# File 'lib/when_exe/icalendar.rb', line 1342

def _inc
  @index += 1
  return self
end

#_previuos_dateObject



1337
1338
1339
# File 'lib/when_exe/icalendar.rb', line 1337

def _previuos_date
  return @date[@index-1]
end