Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • rake/ext/time.rb

Time

Public Instance Methods

<=>(other) click to toggle source
 
               # File rake/ext/time.rb, line 8
def <=>(other)
  if Rake::EarlyTime === other
    - other.<=>(self)
  else
    rake_original_time_compare(other)
  end
end
            
Also aliased as: rake_original_time_compare
rake_original_time_compare(other) click to toggle source
Alias for: <=>