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

Bump minimum to 2.7 #75

Merged
merged 4 commits into from
Mar 6, 2024
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
16 changes: 0 additions & 16 deletions .expeditor/verify.pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,6 @@ expeditor:

steps:

- label: run-lint-and-specs-ruby-2.5
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.5

- label: run-lint-and-specs-ruby-2.6
command:
- .expeditor/run_linux_tests.sh rake
expeditor:
executor:
docker:
image: ruby:2.6

- label: run-lint-and-specs-ruby-2.7
command:
- .expeditor/run_linux_tests.sh rake
Expand Down
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ source "https://rubygems.org"
gemspec

group :test do
gem "activesupport", "< 6" # this dep can be removed when we drop Ruby 2.4 support
gem "activesupport"
gem "chefstyle"
gem "cucumber", "< 5" # remove the version pin when we drop Ruby 2.4 support
gem "cucumber", "~> 9.1.0"
gem "rake"
gem "rspec", "~> 3.7"
gem "rubocop-ast", "= 1.4.1" # Drop this dependency/version when we remove ruby-2.4 support
gem "rubocop-ast"
end

group :debug do
Expand Down
2 changes: 1 addition & 1 deletion mixlib-log.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ Gem::Specification.new do |gem|
gem.authors = ["Chef Software, Inc."]
gem.files = %w{LICENSE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
gem.require_paths = ["lib"]
gem.required_ruby_version = ">= 2.5"
gem.required_ruby_version = ">= 2.7"
end