class CronSpec::DayFactory

Factory for constructing Day CronValues from a cron specification.

Constants

DayLowerLimit

The lower limit for a value representing a day of the month

DayUpperLimit

The upper limit for a value representing a day of the month

Public Class Methods

new() click to toggle source

Constructs a new DayFactory object.

Calls superclass method CronSpec::CronSpecificationFactory::new
# File lib/cron-spec/day_factory.rb, line 14
def initialize
  super
  @lower_limit = DayLowerLimit
  @upper_limit = DayUpperLimit
end