Extensions to time to allow comparisons with an early time class.
Methods
Public Instance methods
[ show source ]
# File lib/rake.rb, line 1392
1392: def <=>(other)
1393: if Rake::EarlyTime === other
1394: - other.<=>(self)
1395: else
1396: rake_original_time_compare(other)
1397: end
1398: end