From 9007f9c8511241d350161876d11499ddab78237d Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Wed, 16 Jan 2013 22:15:45 -0600 Subject: [PATCH] Remove the coverage rake task RCov does not work on Ruby 1.9.x --- Rakefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Rakefile b/Rakefile index 257da617..9504dc1d 100644 --- a/Rakefile +++ b/Rakefile @@ -55,14 +55,6 @@ Rake::TestTask.new(:test) do |test| test.verbose = true end -desc "Generate RCov test coverage and open in your browser" -task :coverage do - require 'rcov' - sh "rm -fr coverage" - sh "rcov test/test_*.rb" - sh "open coverage/index.html" -end - require 'rdoc/task' Rake::RDocTask.new do |rdoc| rdoc.rdoc_dir = 'rdoc'