class CronSpec::MinuteFactory

Factory for constructing minute cron values from a cron specification.

Constants

MinuteLowerLimit

The lower limit of a value representing a minute of an hour

MinuteUpperLimit

The upper limit of a value representing a minute of an hour

Public Class Methods

new() click to toggle source

Constructs a new MinuteFactory object.

Calls superclass method CronSpec::CronSpecificationFactory::new
# File lib/cron-spec/minute_factory.rb, line 15
def initialize
  super
  @lower_limit = MinuteLowerLimit
  @upper_limit = MinuteUpperLimit
end