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

exclude rcov.rb from rcov report

This commit is contained in:
Scott Barron 2008-12-12 10:05:09 -05:00
parent fee9487e0d
commit 81beebd478

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', '--exclude', 'Library']
t.rcov_opts = ['--exclude', 'spec', '--exclude', 'Library', '--exclude', 'rcov.rb']
end
desc "Run all examples"