Sha256: e3a0ebbcb43753bcec2d8af6044023da37f4a46bd8ab29937038b765e68fc40e

Contents?: true

Size: 1.2 KB

Versions: 14

Compression:

Stored size: 1.2 KB

Contents

<%
cucumber_pro_opts = ENV['ENABLE_CUCUMBER_PRO'] ? "--format Cucumber::Pro --out /dev/null" : ""
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
rerun_opts = rerun.to_s.strip.empty? ? "--format progress features" : "--format pretty #{rerun}"
std_opts = "--format progress features --tags ~@wip --tag ~@wip-new-core -r features --strict #{cucumber_pro_opts}"
std_opts << " --tags ~@wip-jruby" if defined?(JRUBY_VERSION)

wip_opts = "--color -r features --tags @wip,@wip-new-core"
wip_opts << ",@wip-jruby" if defined?(JRUBY_VERSION)
%>
default:     <%= std_opts %> --tags ~@jruby
jruby:       <%= std_opts %> --tags ~@wire
jruby_win:   <%= std_opts %> --tags ~@wire CUCUMBER_FORWARD_SLASH_PATHS=true
windows_mri: <%= std_opts %> --tags ~@jruby --tags ~@wire --tags ~@needs-many-fonts CUCUMBER_FORWARD_SLASH_PATHS=true
ruby_1_9:    <%= std_opts %> --tags ~@jruby
ruby_2_0:    <%= std_opts %> --tags ~@jruby
ruby_2_1:    <%= std_opts %> --tags ~@jruby
wip:         --wip <%= wip_opts %> features <%= cucumber_pro_opts %>
none:        --format pretty --format Cucumber::Pro --out /dev/null
rerun:       <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip --tag ~@wip-new-core <%= cucumber_pro_opts %>

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
cucumber-2.1.0 cucumber.yml
cucumber-2.0.2 cucumber.yml
cucumber-2.0.1 cucumber.yml
cucumber-2.0.0 cucumber.yml
cucumber-2.0.0.rc.5 cucumber.yml
cucumber-2.0.0.rc.4 cucumber.yml
cucumber-2.0.0.rc.3 cucumber.yml
cucumber-2.0.0.rc.2 cucumber.yml
cucumber-2.0.0.rc.1 cucumber.yml
cucumber-2.0.0.beta.5 cucumber.yml
cucumber-2.0.0.beta.4 cucumber.yml
cucumber-2.0.0.beta.3 cucumber.yml
cucumber-2.0.0.beta.2 cucumber.yml
cucumber-2.0.0.beta.1 cucumber.yml