Class Rake::EarlyTime
In: lib/rake.rb
Parent: Object

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

Methods

<=>   to_s  

Included Modules

Comparable Singleton

Public Instance methods

[Source]

      # File lib/rake.rb, line 1377
1377:     def <=>(other)
1378:       -1
1379:     end

[Source]

      # File lib/rake.rb, line 1381
1381:     def to_s
1382:       "<EARLY TIME>"
1383:     end

[Validate]