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