Is your plugin hosted on GitHub? Make sure to press the "fetch" button next to the repository field to fetch your plugin's info from GitHub rather than typing it all in.
Repository
Name
Home Page
Short description Find your tests' blind spots easily with Mauricio Fernandez's rcov code coverage tool and this set of dynamic Rake tasks.
Description rails_rcov provides easy-to-use Rake tasks to determine the code coverage of your unit, functional, and integration tests using Mauricio Fernandez's rcov tool. == Installation First, install rcov from Mauricio's web site [http://eigenclass.org/hiki.rb?rcov]. Make sure it's on your system path, so that typing +rcov+ on the command line actually runs it. THIS PLUGIN DOESN'T DO ANYTHING BESIDES GENERATE ERRORS UNLESS YOU INSTALL RCOV FIRST. RCOV CONTAINS ALL THE MAGIC, THIS PLUGIN JUST RUNS IT. Second, install this plugin. If your project is source-controlled by Subversion (which it should be, really), the easiest way to install this is via Rails' plugin script: ./script/plugin install -x http://svn.codahale.com/rails_rcov If you're not using Subversion, or if you don't want it adding svn:externals in your project, remove the -x switch: ./script/plugin install http://svn.codahale.com/rails_rcov == Usage For each test:blah task you have for your Rails project, rails_rcov adds two more: test:blah:rcov and test:blah:clobber_rcov. Running rake test:units:rcov, for example, will run your unit tests through rcov and write the code coverage reports to your_rails_app/coverage/units. Running test:units:clobber_rcov will erase the generated report for the unit tests. Each rcov task can take a few options: rake test:units:rcov SORT=(name|loc|coverage) rake test:units:rcov SORT_REVERSE=(YES|Y|TRUE|T|1) rake test:units:rcov THRESHOLD=(INT) rake test:units:rcov NO_COLOR=(YES|Y|TRUE|T|1) rake test:units:rcov PROFILE=(YES|Y|TRUE|T|1) rake test:units:rcov SHOW_WARNINGS=(YES|Y|TRUE|T|1) These options parallel the rcov options, so check the rcov documentation if this isn't clear. Running rake test:rcov will run the unit tests, functional tests, and integration tests sequentially via rcov, and output the results to your_rails_app/coverage/(units|functionals|integration). == Resources === Subversion * http://svn.codahale.com/rails_rcov === Blog * http://blog.codahale.com == Credits Written by Coda Hale .
Description format RDoc MarkDown Textile
License Ruby's Rails' (MIT) GPL LGPL BSD Apache Artistic PublicDomain BSD-type Free-Trial Free-but-Restricted OpenSource Proprietary Shareware Source-available-proprietary Commercial
Category Assets Controllers Internationalization Misc. Enhancements Model Rails Engines Searching and Queries Security Statistics and Logs Testing View Extensions