class Rufus::CronLine

def date_match?(date)

def date_match?(date)
  return false unless sub_match?(date.day, @days)
  return false unless sub_match?(date.month, @months)
  return false unless sub_match?(date.wday, @weekdays)
  return false unless sub_match?(CronLine.monthday(date), @monthdays)
  true
end