class Rufus::Scheduler::CronLine

def monthday_match?(date, values)

def monthday_match?(date, values)
  return true if values.nil?
  today_values = monthdays(date)
  (today_values & values).any?
end