Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency ruby to v3 #18

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
inherit_from: .rubocop_todo.yml

AllCops:
TargetRubyVersion: 2.7.6
TargetRubyVersion: 3.1.6'
# Exclude:

Bundler/OrderedGems:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.8
3.3.6
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ to install the modules listed in `Terrafile` into `vendor/terraform_modules`.
## Dependencies

- git
- Ruby (>= 2.7.6)
- Ruby (>= 3.1.6)

## Development

Expand Down
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
8 changes: 4 additions & 4 deletions terrafile.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
spec.name = 'terrafile'
spec.version = Terrafile::VERSION
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '>= 2.7.6'
spec.required_ruby_version = '>= 3.1.6'
spec.authors = ['dxw']
spec.email = ['[email protected]']
spec.summary = 'Installs the modules listed in Terrafile'
Expand All @@ -28,11 +28,11 @@ 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'
spec.add_development_dependency 'rspec', '~> 3.8'
spec.add_development_dependency 'rubocop', '~> 0.58'
spec.add_development_dependency 'simplecov', '~> 0.16'
spec.add_development_dependency 'rubocop', '~> 1.68'
spec.add_development_dependency 'simplecov', '~> 0.1'
end
Loading