summaryrefslogtreecommitdiff
path: root/trunk/lib/rake/tasklib.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/lib/rake/tasklib.rb')
-rw-r--r--trunk/lib/rake/tasklib.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/trunk/lib/rake/tasklib.rb b/trunk/lib/rake/tasklib.rb
deleted file mode 100644
index 465a58a0c7..0000000000
--- a/trunk/lib/rake/tasklib.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env ruby
-
-require 'rake'
-
-module Rake
-
- # Base class for Task Libraries.
- class TaskLib
-
- include Cloneable
-
- # Make a symbol by pasting two strings together.
- def paste(a,b)
- (a.to_s + b.to_s).intern
- end
- end
-
-end