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



1175
1176
1177
# File 'lib/rake.rb', line 1175

def <=>(other)
  -1
end

#to_sObject



1179
1180
1181
# File 'lib/rake.rb', line 1179

def to_s
  "<EARLY TIME>"
end