templates/skeleton/config/cucumber.yml.erb in cucumber-rails-0.3.0 vs templates/skeleton/config/cucumber.yml.erb in cucumber-rails-0.3.1

- old
+ new

@@ -1,7 +1,8 @@ <%% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" -rerun_opts = rerun.to_s.strip.empty? ? "--format progress features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" -std_opts = "#{rerun_opts} --format rerun --out rerun.txt --strict --tags ~@wip" +rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" +std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip" %> -default: <%= spork? ? '--drb ' : '' %><%%= std_opts %> +default: <%= spork? ? '--drb ' : '' %><%%= std_opts %> features wip: <%= spork? ? '--drb ' : '' %>--tags @wip:3 --wip features +rerun: <%= spork? ? '--drb ' : '' %><%%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip