Class: Montrose::Rule::NthDayOfYear::YearDay
- Inherits:
-
Object
- Object
- Montrose::Rule::NthDayOfYear::YearDay
- Defined in:
- lib/montrose/rule/nth_day_of_year.rb
Instance Method Summary collapse
- #first_wday ⇒ Object
-
#initialize(time) ⇒ YearDay
constructor
A new instance of YearDay.
- #nth_day ⇒ Object
- #total_days ⇒ Object
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_wday ⇒ Object
45 46 47 |
# File 'lib/montrose/rule/nth_day_of_year.rb', line 45 def first_wday @time.beginning_of_year.wday end |
#nth_day ⇒ Object
41 42 43 |
# File 'lib/montrose/rule/nth_day_of_year.rb', line 41 def nth_day @time.yday end |
#total_days ⇒ Object
49 50 51 |
# File 'lib/montrose/rule/nth_day_of_year.rb', line 49 def total_days days_in_year(@time) end |