Exclude std ruby files from rcov output

This commit is contained in:
Scott Barron 2008-05-29 13:24:54 -07:00
parent 61b5327cc8
commit e090e3c59a
1 changed files with 1 additions and 1 deletions

View File

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