Sha256: 29c205b80a889864ff0c29d997b515bbcda3f3e4835ee98f4c195e72429e89cb
Contents?: true
Size: 531 Bytes
Versions: 13
Compression:
Stored size: 531 Bytes
Contents
require 'cucumber/rake/task' Cucumber::Rake::Task.new(:features) do |features| features.cucumber_opts = "features --tags ~@wip --format progress" end namespace :features do Cucumber::Rake::Task.new(:pretty, "Run Cucumber features with output in pretty format") do |features| features.cucumber_opts = "features --tags ~@wip --format pretty" end Cucumber::Rake::Task.new(:wip, "Run @wip (Work In Progress) Cucumber features") do |features| features.cucumber_opts = "features --tags @wip --format progress" end end
Version data entries
13 entries across 13 versions & 2 rubygems