Is there an easy way to determine if a year is a leap year?

link|improve this question

feedback

2 Answers

up vote 16 down vote accepted

Try:

now = DateTime.now 
flag = Date.leap?( now.year )

From: http://www.ruby-doc.org/stdlib/

link|improve this answer
Thought this might be in the library, but was not sure. – MikeJ Oct 14 '09 at 15:02
feedback

Try this:

is_leap_year = year % 4 == 0 && year % 100 != 0 || year % 400 == 0
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.