########################################################################### Extensions to time to allow comparisons with an early time class.
Methods
Public Instance methods
[ show source ]
# File lib/rake.rb, line 1553 1553: def <=>(other) 1554: if Rake::EarlyTime === other 1555: - other.<=>(self) 1556: else 1557: rake_original_time_compare(other) 1558: end 1559: end