From e090e3c59a5f46e09f1978286bd104f94daaf11b Mon Sep 17 00:00:00 2001 From: Scott Barron Date: Thu, 29 May 2008 13:24:54 -0700 Subject: [PATCH] Exclude std ruby files from rcov output --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index e60794d..0aa7481 100644 --- a/Rakefile +++ b/Rakefile @@ -71,7 +71,7 @@ else Spec::Rake::SpecTask.new('cruise') do |t| t.spec_files = FileList['spec/**/*.rb'] t.rcov = true - t.rcov_opts = ['--exclude', 'spec'] + t.rcov_opts = ['--exclude', 'spec', '--exclude', 'Library'] end desc "Run all examples"