Skip to content

Commit a3a6f2e

Browse files
authored
Merge pull request #386 from ActsAsParanoid/drop-ruby-3-1
Drop support for Ruby 3.1 and JRuby 9.4
2 parents d207656 + f74198b commit a3a6f2e

3 files changed

Lines changed: 3 additions & 13 deletions

File tree

.github/workflows/ruby.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,18 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
ruby: ["3.1", "jruby-9.4", "3.2", "3.3", "3.4", "jruby-10.0"]
21+
ruby: ["3.2", "3.3", "3.4", "jruby-10.0"]
2222
gemfile:
2323
- active_record_72
2424
- active_record_80
2525
- active_record_81
2626
exclude:
2727
# The activerecord-jdbcsqlite3-adapter gem does not work with Rails
2828
# 8.0 and above yet
29-
- ruby: "jruby-9.4"
30-
gemfile: active_record_80
31-
- ruby: "jruby-9.4"
32-
gemfile: active_record_81
3329
- ruby: "jruby-10.0"
3430
gemfile: active_record_80
3531
- ruby: "jruby-10.0"
3632
gemfile: active_record_81
37-
# Rails 8.1 requires Ruby 3.2
38-
- ruby: "3.1"
39-
gemfile: active_record_81
40-
# Rails 8.0 requires Ruby 3.2
41-
- ruby: "3.1"
42-
gemfile: active_record_80
4333

4434
env:
4535
JRUBY_OPTS: --dev

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins:
1212

1313
AllCops:
1414
NewCops: enable
15-
TargetRubyVersion: 3.1
15+
TargetRubyVersion: 3.2
1616

1717
# Put development dependencies in the gemspec so rubygems.org knows about them
1818
Gemspec/DevelopmentDependencies:

acts_as_paranoid.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
1313
spec.description = "Check the home page for more in-depth information."
1414
spec.homepage = "https://github.com/ActsAsParanoid/acts_as_paranoid"
1515
spec.license = "MIT"
16-
spec.required_ruby_version = ">= 3.1.0"
16+
spec.required_ruby_version = ">= 3.2.0"
1717

1818
spec.metadata["homepage_uri"] = spec.homepage
1919
spec.metadata["changelog_uri"] = "https://github.com/ActsAsParanoid/acts_as_paranoid/blob/master/CHANGELOG.md"

0 commit comments

Comments
 (0)