Skip to content

Commit 71e15f3

Browse files
authored
Merge pull request #2854 from rspec/upgrade-aruba
Upgrade aruba
2 parents c858849 + 8b0681f commit 71e15f3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

features/support/env.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
require 'fileutils'
33

44
module ArubaExt
5-
def run_command(cmd, timeout = nil)
5+
def run_command_and_stop(cmd, opts = {})
66
exec_cmd = cmd =~ /^rspec/ ? "bin/#{cmd}" : cmd
7+
78
unset_bundler_env_vars
89
# Ensure the correct Gemfile and binstubs are found
910
in_current_directory do
1011
with_unbundled_env do
11-
super(exec_cmd, timeout)
12+
super(exec_cmd, opts)
1213
end
1314
end
1415
end

rspec-rails.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ Gem::Specification.new do |s|
5353
end
5454

5555
s.add_development_dependency 'ammeter', '~> 1.1.5'
56-
s.add_development_dependency 'aruba', '~> 0.14.12'
57-
s.add_development_dependency 'cucumber', '> 7.0'
56+
s.add_development_dependency 'aruba', '~> 2.3.1'
57+
s.add_development_dependency 'cucumber', '>= 10.0'
5858
end

0 commit comments

Comments
 (0)