Update to newer cucumber and aruba

This commit is contained in:
Thomas Reynolds 2015-08-10 16:58:32 -07:00
parent ee5e8ff4a1
commit fb6bca234f
9 changed files with 30 additions and 36 deletions

View file

@ -13,7 +13,6 @@ end
group :test do
gem 'cucumber'
gem 'fivemat'
gem 'aruba'
gem 'rspec'
end

View file

@ -4,7 +4,7 @@ Bundler::GemHelper.install_tasks
require 'cucumber/rake/task'
Cucumber::Rake::Task.new(:cucumber, 'Run features that should pass') do |t|
t.cucumber_opts = "--color --tags ~@wip --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
t.cucumber_opts = "--color --tags ~@wip --strict"
end
require 'rake/clean'