########################################################################### Extensions to time to allow comparisons with an early time class.
Methods
Public Instance methods
[ show source ]
# File lib/rake.rb, line 1625
1625: def <=>(other)
1626: if Rake::EarlyTime === other
1627: - other.<=>(self)
1628: else
1629: rake_original_time_compare(other)
1630: end
1631: end