File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 2
2
require 'fileutils'
3
3
4
4
module ArubaExt
5
- def run_command ( cmd , timeout = nil )
5
+ def run_command_and_stop ( cmd , opts = { } )
6
6
exec_cmd = cmd =~ /^rspec/ ? "bin/#{ cmd } " : cmd
7
+
7
8
unset_bundler_env_vars
8
9
# Ensure the correct Gemfile and binstubs are found
9
10
in_current_directory do
10
11
with_unbundled_env do
11
- super ( exec_cmd , timeout )
12
+ super ( exec_cmd , opts )
12
13
end
13
14
end
14
15
end
Original file line number Diff line number Diff line change @@ -53,6 +53,6 @@ Gem::Specification.new do |s|
53
53
end
54
54
55
55
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'
58
58
end
You can’t perform that action at this time.
0 commit comments