You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2013/06/08 06:35:07 UTC

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

Author: donaldp
Date: Sat Jun  8 04:35:07 2013
New Revision: 1490916

URL: http://svn.apache.org/r1490916
Log:
Remove setting of rspec_opts as it is immediately overwritten

Modified:
    buildr/trunk/rakelib/rspec.rake

Modified: buildr/trunk/rakelib/rspec.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/rspec.rake?rev=1490916&r1=1490915&r2=1490916&view=diff
==============================================================================
--- buildr/trunk/rakelib/rspec.rake (original)
+++ buildr/trunk/rakelib/rspec.rake Sat Jun  8 04:35:07 2013
@@ -36,7 +36,6 @@ RSpec::Core::RakeTask.new :spec => ['_re
   ENV['USE_FSC'] = 'no'
   task.rspec_files = FileList['spec/**/*_spec.rb']
   task.rspec_files.exclude('spec/groovy/*') if RUBY_PLATFORM[/java/]
-  task.rspec_opts = default_spec_opts
   task.rspec_opts = %w{--format html --out _reports/specs.html --backtrace}
 end
 file('_reports/specs.html') { task(:spec).invoke }