aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-06-10 17:49:43 -0500
committerJack Nagel2014-06-10 17:50:33 -0500
commit30d6f96be81b1202d8db9a30baacee61a4a4f7c0 (patch)
tree57b399ba4bd55be19d1ae269aba56ccfd062e105 /Library
parent04769734675945a9447d9ee95032e6350d48019d (diff)
downloadhomebrew-30d6f96be81b1202d8db9a30baacee61a4a4f7c0.tar.bz2
Remove rcov rake task
rcov is not compatible with Ruby 2.0.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/Rakefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/Library/Homebrew/test/Rakefile b/Library/Homebrew/test/Rakefile
index 75b34761a..eea45f85e 100644
--- a/Library/Homebrew/test/Rakefile
+++ b/Library/Homebrew/test/Rakefile
@@ -32,19 +32,3 @@ namespace :test do
end
end
end
-
-begin
- require 'rubygems'
- require 'rcov/rcovtask'
-
- Rcov::RcovTask.new do |t|
- t.libs << Dir.pwd
- t.test_files = TEST_FILES
- t.rcov_opts = %w{--exclude=Gems
- --exclude=test_
- --exclude=testball
- --exclude=testing}
- t.output_dir = TEST_DIRECTORY+'coverage'
- end
-rescue LoadError
-end