Skip to content

Instantly share code, notes, and snippets.

View piotrb's full-sized avatar
🚧

Piotr Banasik piotrb

🚧
View GitHub Profile
@eteubert
eteubert / rcov.rake
Created April 18, 2011 12:38
A rake task to combine the rcov coverage reports of RSpec and Cucumber
require 'rspec/core/rake_task'
require 'cucumber/rake/task'
namespace :rcov do
rcov_options = %w{
--rails
--exclude osx\/objc,gems\/,spec\/,features\/,seeds\/
--aggregate coverage/coverage.data
}