Upgrade to Ruby 3.2 and drop 2.6

This commit is contained in:
Sami Samhuri 2023-01-08 00:26:12 -08:00
parent 35d473778a
commit 2c594d7b96
No known key found for this signature in database
GPG key ID: 4B4195422742FC16
3 changed files with 8 additions and 8 deletions

View file

@ -4,7 +4,7 @@ executors:
parameters: parameters:
version: version:
description: "Ruby version number" description: "Ruby version number"
default: "3.1.0" default: "3.2.0"
type: string type: string
docker: docker:
- image: cimg/ruby:<< parameters.version >> - image: cimg/ruby:<< parameters.version >>
@ -15,7 +15,7 @@ commands:
parameters: parameters:
version: version:
description: "Ruby version number" description: "Ruby version number"
default: "3.1.0" default: "3.2.0"
type: string type: string
steps: steps:
- restore_cache: - restore_cache:
@ -24,7 +24,7 @@ commands:
- run: - run:
name: Install Ruby Dependencies name: Install Ruby Dependencies
command: | command: |
gem install bundler -v 2.3.4 --conservative --no-document gem install bundler -v 2.4.3 --conservative --no-document
bundle config --local path vendor/bundle bundle config --local path vendor/bundle
bundle check || (bundle install --jobs=4 --retry=3 && bundle clean) bundle check || (bundle install --jobs=4 --retry=3 && bundle clean)
- save_cache: - save_cache:
@ -44,7 +44,7 @@ jobs:
parameters: parameters:
version: version:
description: "Ruby version number" description: "Ruby version number"
default: "3.1.0" default: "3.2.0"
type: string type: string
executor: executor:
name: ruby name: ruby
@ -65,14 +65,14 @@ workflows:
- test: - test:
matrix: matrix:
parameters: parameters:
version: ["2.6.9", "2.7.5", "3.0.3", "3.1.0"] version: ["2.7.5", "3.0.3", "3.1.3", "3.2.0"]
cron-workflow: cron-workflow:
jobs: jobs:
- rubocop - rubocop
- test: - test:
matrix: matrix:
parameters: parameters:
version: ["2.6.9", "2.7.5", "3.0.3", "3.1.0"] version: ["2.7.5", "3.0.3", "3.1.3", "3.2.0"]
triggers: triggers:
- schedule: - schedule:
cron: "0 13 * * 6" cron: "0 13 * * 6"

View file

@ -1,6 +1,6 @@
AllCops: AllCops:
NewCops: enable NewCops: enable
TargetRubyVersion: 2.6 TargetRubyVersion: 2.7
Layout/EmptyLineAfterGuardClause: Layout/EmptyLineAfterGuardClause:
Enabled: false Enabled: false

View file

@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.summary = 'A Ruby gem for performing shell word expansion using wordexp' spec.summary = 'A Ruby gem for performing shell word expansion using wordexp'
spec.homepage = 'https://github.com/samsonjs/wordexp' spec.homepage = 'https://github.com/samsonjs/wordexp'
spec.license = 'MIT' spec.license = 'MIT'
spec.required_ruby_version = '>= 2.6.0' spec.required_ruby_version = '>= 2.7.0'
spec.metadata = { spec.metadata = {
'bug_tracker_uri' => 'https://github.com/samsonjs/wordexp/issues', 'bug_tracker_uri' => 'https://github.com/samsonjs/wordexp/issues',