Skip to content

Commit

Permalink
Update Aruba gem
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jdudley1123 committed Nov 15, 2024
1 parent 00ba2d5 commit e542a96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion features/step_definitions/terrafile_steps.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
end

When('I run the _terrafile_ command') do
run_simple('terrafile', fail_on_error: false)
run_command_and_stop('terrafile', fail_on_error: false)
end

Then('I should see that a _modules_ directory will be created') do
Expand Down
2 changes: 1 addition & 1 deletion terrafile.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
spec.require_paths = ['lib']
spec.executables = ['terrafile']

spec.add_development_dependency 'aruba', '~> 0.14'
spec.add_development_dependency 'aruba', '~> 2.2'
spec.add_development_dependency 'bundler', '>= 2.1.0'
spec.add_development_dependency 'pry-byebug', '~> 3.6'
spec.add_development_dependency 'rake', '~> 13.0'
Expand Down

0 comments on commit e542a96

Please sign in to comment.