Class: Montrose::Rule::DayOfMonth

Inherits:
Object
  • Object
show all
Includes:
Montrose::Rule
Defined in:
lib/montrose/rule/day_of_month.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Montrose::Rule

#advance!, #continue?, included

Constructor Details

#initialize(days) ⇒ DayOfMonth

Initializes rule

Parameters:

  • days (Array<Fixnum>)
    • valid days of month, i.e. [1, 2, -1]



16
17
18
# File 'lib/montrose/rule/day_of_month.rb', line 16

def initialize(days)
  @days = days
end

Class Method Details

.apply_options(opts) ⇒ Object



8
9
10
# File 'lib/montrose/rule/day_of_month.rb', line 8

def self.apply_options(opts)
  opts[:mday]
end

Instance Method Details

#include?(time) ⇒ Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/montrose/rule/day_of_month.rb', line 20

def include?(time)
  @days.include?(time.mday) || included_from_end_of_month?(time)
end