Sha256: a126ea735e5f14276837cda94bc94b95fae0fa5813faee01b47a081a81757a79
Contents?: true
Size: 337 Bytes
Versions: 6
Compression:
Stored size: 337 Bytes
Contents
require 'bundler/gem_tasks' require 'cucumber/rake/task' Cucumber::Rake::Task.new(:acceptance) do |t| t.cucumber_opts = [].tap do |a| a.push('--color') a.push('--format progress') a.push('--strict') a.push('--tags ~@wip') end.join(' ') end desc 'Run all tests' task :test => [:acceptance] task :default => [:test]
Version data entries
6 entries across 6 versions & 2 rubygems
Version | Path |
---|---|
community-zero-2.0.2 | Rakefile |
stove-2.0.0 | Rakefile |
stove-2.0.0.beta.2 | Rakefile |
stove-2.0.0.beta.1 | Rakefile |
community-zero-2.0.1 | Rakefile |
community-zero-2.0.0 | Rakefile |