Class: Montrose::Rule::NthDayOfYear::YearDay

Inherits:
Object
  • Object
show all
Defined in:
lib/montrose/rule/nth_day_of_year.rb

Instance Method Summary collapse

Constructor Details

#initialize(time) ⇒ YearDay

Returns a new instance of YearDay.



37
38
39
# File 'lib/montrose/rule/nth_day_of_year.rb', line 37

def initialize(time)
  @time = time
end

Instance Method Details

#first_wdayObject



45
46
47
# File 'lib/montrose/rule/nth_day_of_year.rb', line 45

def first_wday
  @time.beginning_of_year.wday
end

#nth_dayObject



41
42
43
# File 'lib/montrose/rule/nth_day_of_year.rb', line 41

def nth_day
  @time.yday
end

#total_daysObject



49
50
51
# File 'lib/montrose/rule/nth_day_of_year.rb', line 49

def total_days
  days_in_year(@time)
end