class Chronic::RepeaterYear

def month_days(year, month)

def month_days(year, month)
  if Date.leap?(year)
    RepeaterMonth::MONTH_DAYS_LEAP[month - 1]
  else
    RepeaterMonth::MONTH_DAYS[month - 1]
  end
end