class Time
########################################################################### Extensions to time to allow comparisons with an early time class.
Public Instance Methods
<=>(other)
click to toggle source
# File lib/rake/ext/time.rb, line 6 def <=>(other) if Rake::EarlyTime === other - other.<=>(self) else rake_original_time_compare(other) end end
Also aliased as: rake_original_time_compare