1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00

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

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"