= private = protected
julian_leap?(y)
Is a year a leap year in the Julian calendar?
All years divisible by 4 are leap years in the Julian calendar.
# File lib/date.rb, line 720 def self.julian_leap? (y) y % 4 == 0 end