# File lib/chronic/handlers.rb, line 518 def month_overflow?(year, month, day) if Date.leap?(year) day > RepeaterMonth::MONTH_DAYS_LEAP[month - 1] else day > RepeaterMonth::MONTH_DAYS[month - 1] end rescue ArgumentError false end