Class: Rake::EarlyTime

Inherits:
Object
  • Object
show all
Includes:
Comparable, Singleton
Defined in:
lib/rake.rb

Overview

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

Instance Method Summary collapse

Instance Method Details

#<=>(other) ⇒ Object



1607
1608
1609
# File 'lib/rake.rb', line 1607

def <=>(other)
  -1
end

#to_sObject



1611
1612
1613
# File 'lib/rake.rb', line 1611

def to_s
  "<EARLY TIME>"
end