Extensions to time to allow comparisons with an early time class.
Methods
Public Instance methods
[ show source ]
# File lib/rake.rb, line 1374 1374: def <=>(other) 1375: if Rake::EarlyTime === other 1376: - other.<=>(self) 1377: else 1378: rake_original_time_compare(other) 1379: end 1380: end