Remove rcov rake task

rcov is not compatible with Ruby 2.0.
This commit is contained in:
Jack Nagel 2014-06-10 17:49:43 -05:00
parent b7a0602f72
commit ba856de06e

View File

@ -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