summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/lib/rake/ext/time.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/lib/rake/ext/time.rb')
-rw-r--r--ruby_1_9_3/lib/rake/ext/time.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/ruby_1_9_3/lib/rake/ext/time.rb b/ruby_1_9_3/lib/rake/ext/time.rb
deleted file mode 100644
index 7877abf0ce..0000000000
--- a/ruby_1_9_3/lib/rake/ext/time.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-#--
-# Extensions to time to allow comparisons with an early time class.
-
-class Time
- alias rake_original_time_compare :<=>
- def <=>(other)
- if Rake::EarlyTime === other
- - other.<=>(self)
- else
- rake_original_time_compare(other)
- end
- end
-end
-