Skip to content

Commit

Permalink
Return Ruby 3.1 support
Browse files Browse the repository at this point in the history
…since we're not yet updating to ActiveSupport 8.

Will retry that another time.
  • Loading branch information
jgarber623-cargosense committed Jan 6, 2025
1 parent 85ddd5b commit 48109a4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
gemfile: [Gemfile, gemfiles/minimum_dependencies.gemfile]
ruby: [3.2, 3.3, 3.4]
ruby: [3.1, 3.2, 3.3, 3.4]
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: 3.2
ruby-version: 3.1
- uses: rubygems/release-gem@v1
with:
await-release: false
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: 3.2
ruby-version: 3.1
- run: |
mkdir -p $HOME/.gem
touch $HOME/.gem/credentials
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ inherit_from: config/default.yml
require: rubocop-packaging

AllCops:
TargetRubyVersion: 3.2
TargetRubyVersion: 3.1

Naming/FileName:
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rubocop-cargosense (4.0.0)
rubocop-cargosense (3.2.0)
rubocop (~> 1.64)
rubocop-capybara (~> 2.20)
rubocop-factory_bot (~> 2.26, >= 2.26.1)
Expand Down
4 changes: 2 additions & 2 deletions rubocop-cargosense.gemspec
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# frozen_string_literal: true

Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 3.2"
spec.required_ruby_version = ">= 3.1"

spec.name = "rubocop-cargosense"
spec.version = "4.0.0"
spec.version = "3.2.0"
spec.authors = ["CargoSense"]
spec.email = ["[email protected]"]

Expand Down

0 comments on commit 48109a4

Please sign in to comment.