Extensions to time to allow comparisons with an early time class.
[Source]
# File lib/rake.rb, line 1394 1394: def <=>(other) 1395: if Rake::EarlyTime === other 1396: - other.<=>(self) 1397: else 1398: rake_original_time_compare(other) 1399: end 1400: end
[Validate]