Extensions to time to allow comparisons with an early time class.
Methods
Public Instance methods
[ show source ]
# File lib/rake.rb, line 1414
1414: def <=>(other)
1415: if Rake::EarlyTime === other
1416: - other.<=>(self)
1417: else
1418: rake_original_time_compare(other)
1419: end
1420: end