class Time


Extensions to time to allow comparisons with an early time class.
###########################################################################

def <=>(other)

def <=>(other)
  if Rake::EarlyTime === other
    - other.<=>(self)
  else
    rake_original_time_compare(other)
  end
end