summaryrefslogtreecommitdiff
path: root/ruby_2_2/lib/rake/early_time.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/lib/rake/early_time.rb')
-rw-r--r--ruby_2_2/lib/rake/early_time.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/ruby_2_2/lib/rake/early_time.rb b/ruby_2_2/lib/rake/early_time.rb
deleted file mode 100644
index abcb1872b5..0000000000
--- a/ruby_2_2/lib/rake/early_time.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-module Rake
-
- # EarlyTime is a fake timestamp that occurs _before_ any other time value.
- class EarlyTime
- include Comparable
- include Singleton
-
- ##
- # The EarlyTime always comes before +other+!
-
- def <=>(other)
- -1
- end
-
- def to_s # :nodoc:
- "<EARLY TIME>"
- end
- end
-
- EARLY = EarlyTime.instance
-end