You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2010/11/04 15:46:51 UTC

svn commit: r1031012 - /buildr/trunk/rakelib/rspec.rake

Author: boisvert
Date: Thu Nov  4 14:46:51 2010
New Revision: 1031012

URL: http://svn.apache.org/viewvc?rev=1031012&view=rev
Log:
Fix rcov output dir

Modified:
    buildr/trunk/rakelib/rspec.rake

Modified: buildr/trunk/rakelib/rspec.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/rspec.rake?rev=1031012&r1=1031011&r2=1031012&view=diff
==============================================================================
--- buildr/trunk/rakelib/rspec.rake (original)
+++ buildr/trunk/rakelib/rspec.rake Thu Nov  4 14:46:51 2010
@@ -59,8 +59,7 @@ begin
     task.rspec_opts = default_spec_opts
     task.rspec_opts << '--format progress'
     task.rcov = true
-    task.rcov_path = '_reports/coverage'
-    task.rcov_opts = %w{--exclude / --include-file ^lib --text-summary}
+    task.rcov_opts = %w{-o _reports/coverage --exclude / --include-file ^lib --text-summary}
   end
   file('_reports/coverage') { task(:coverage).invoke }