class Every
Attributes
business[RW]
first_flg[RW]
last_flg[RW]
method[RW]
mmdd[RW]
shift[RW]
weekday[RW]
Public Class Methods
new(method)
click to toggle source
# File lib/gcalgen/every.rb, line 3 def initialize(method) @method = method end
Public Instance Methods
business_day()
click to toggle source
# File lib/gcalgen/every.rb, line 23 def business_day @business = true end
first()
click to toggle source
# File lib/gcalgen/every.rb, line 11 def first @first_flg = true end
last()
click to toggle source
# File lib/gcalgen/every.rb, line 15 def last @last_flg = true end
shift_enable()
click to toggle source
# File lib/gcalgen/every.rb, line 19 def shift_enable @shift = true end
wday(weekday)
click to toggle source
# File lib/gcalgen/every.rb, line 7 def wday(weekday) @weekday = weekday end