adding all of botlist, initial add
[botlist.git] / openbotlist / WEB-INF / lib / ruby / rspec / rake_tasks / examples_with_rcov.rake
blob4bf35c6b8ba363128c8483f9c40b3f491f266f4f
1 require 'rake'
2 require 'spec/rake/spectask'
4 desc "Run all examples with RCov"
5 Spec::Rake::SpecTask.new('examples_with_rcov') do |t|
6   t.spec_files = FileList['examples/**/*.rb']
7   t.rcov = true
8   t.rcov_opts = ['--exclude', 'examples']
9 end