123456789_123456789_123456789_123456789_123456789_

Class: Rake::EarlyTime

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Instance Chain:
self, Singleton, Comparable
Inherits: Object
Defined in: lib/rake/early_time.rb

Overview

EarlyTime is a fake timestamp that occurs before any other time value.

Instance Method Summary

Instance Method Details

#<=>(other)

The EarlyTime always comes before other!

[ GitHub ]

  
# File 'lib/rake/early_time.rb', line 12

def <=>(other)
  -1
end

#to_s

This method is for internal use only.
[ GitHub ]

  
# File 'lib/rake/early_time.rb', line 16

def to_s # :nodoc:
  "<EARLY TIME>"
end