Skip to content

Commit e542a96

Browse files
committed
Update Aruba gem
The `run_simple` method has been replaced by `run_command_and_stop` since v0.14.8. See: https://github.com/cucumber/aruba/blob/e069bacedaea8cad4a98c46ddae1bc054a3de48e/CHANGELOG.md?plain=1#L414
1 parent 00ba2d5 commit e542a96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

features/step_definitions/terrafile_steps.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
end
1313

1414
When('I run the _terrafile_ command') do
15-
run_simple('terrafile', fail_on_error: false)
15+
run_command_and_stop('terrafile', fail_on_error: false)
1616
end
1717

1818
Then('I should see that a _modules_ directory will be created') do

terrafile.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
2828
spec.require_paths = ['lib']
2929
spec.executables = ['terrafile']
3030

31-
spec.add_development_dependency 'aruba', '~> 0.14'
31+
spec.add_development_dependency 'aruba', '~> 2.2'
3232
spec.add_development_dependency 'bundler', '>= 2.1.0'
3333
spec.add_development_dependency 'pry-byebug', '~> 3.6'
3434
spec.add_development_dependency 'rake', '~> 13.0'

0 commit comments

Comments
 (0)