RcovRails
=========
A simple "no thoughts required" solution to adding RCOV code coverage to your Rails application.
Just install the plugin, install the RCOV gem, and you're done.
Enjoy.
Example
=======
Install as a Rails 3 Gem:
$: vim Gemfile
group :development do
gem "rcov_rails"
end
$: bundle install
$: rake test:coverage # boom!
Install as a Rails 2.x Plugin:
$: sudo gem install rcov
$: ruby script/plugin install git://github.com/matthewrudy/rcov_rails
$: rake test:coverage # boom!
Install as a Rails 3.x Plugin: // I suggest you don't do this, as you'll need to add rcov via bundler anyway
$: sudo gem install rcov
$: vim Gemfile
group :development do
gem "rcov"
end
$: bundle install
$: rails plugin install git://github.com/matthewrudy/rcov_rails
$: rake test:coverage # boom!
Copyright (c) 2010 [Matthew Rudy Jacobs], released under the MIT license
Project
rcov_rails
One Rake task to give you rcov code coverage for your rails app. rake test:coverage
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
Development
Dependencies
Runtime
>= 0
Project Readme