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