Extensions to time to allow comparisons with an early time class.
Methods
Public Instance methods
[ show source ]
# File lib/rake.rb, line 1212
1212: def <=>(other)
1213: if Rake::EarlyTime === other
1214: - other.<=>(self)
1215: else
1216: rake_original_time_compare(other)
1217: end
1218: end