Skip to content

Commit

Permalink
[deps] update Aruba and Cucumber
Browse files Browse the repository at this point in the history
  • Loading branch information
markets committed Feb 4, 2024
1 parent fe34fcf commit 28c56bf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ AllCops:
TargetRubyVersion: 2.5
Include:
- '**/*.rb'
- Rakefile
- Gemfile
Exclude:
- fixtures/**/*
NewCops: disable
Expand Down Expand Up @@ -96,6 +94,3 @@ Naming/MemoizedInstanceVariableName:
Enabled: false
Naming/HeredocDelimiterNaming:
Enabled: false

Bundler/OrderedGems:
Enabled: false
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ gem 'rake', '~> 13.1', require: false
gem 'yard', '~> 0.9', require: false

# Test tools
gem 'aruba', '~> 0.14', require: false
gem 'capybara', '~> 2.5', require: false
gem 'cucumber', '~> 3.0', require: false
gem 'aruba', '~> 1', require: false
gem 'capybara', '~> 3', require: false
gem 'cucumber', require: false
gem 'rspec', '~> 3.0', require: false
gem 'timecop', '~> 0.6', require: false

Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ require 'middleman-core'

Cucumber::Rake::Task.new(:cucumber, 'Run features that should pass') do |t|
exempt_tags = ''
exempt_tags << '--tags ~@nojava ' if RUBY_PLATFORM == 'java'
t.cucumber_opts = "--color --tags ~@wip #{exempt_tags} --strict --format #{ENV['CUCUMBER_FORMAT'] || 'pretty'}"
exempt_tags << "--tags 'not @nojava'" if RUBY_PLATFORM == 'java'
t.cucumber_opts = "--color --tags 'not @wip' #{exempt_tags} --strict --format pretty"
end

desc 'Run tests, both RSpec and Cucumber'
Expand Down

0 comments on commit 28c56bf

Please sign in to comment.