Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions features/support/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
require 'fileutils'

module ArubaExt
def run_command(cmd, timeout = nil)
def run_command_and_stop(cmd, opts = {})
exec_cmd = cmd =~ /^rspec/ ? "bin/#{cmd}" : cmd

unset_bundler_env_vars
# Ensure the correct Gemfile and binstubs are found
in_current_directory do
with_unbundled_env do
super(exec_cmd, timeout)
super(exec_cmd, opts)
end
end
end
Expand Down
4 changes: 2 additions & 2 deletions rspec-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ Gem::Specification.new do |s|
end

s.add_development_dependency 'ammeter', '~> 1.1.5'
s.add_development_dependency 'aruba', '~> 0.14.12'
s.add_development_dependency 'cucumber', '> 7.0'
s.add_development_dependency 'aruba', '~> 2.3.1'
s.add_development_dependency 'cucumber', '>= 10.0'
end