Skip to content

Commit

Permalink
Merge pull request #322 from ActsAsParanoid/support-ruby-3-and-up
Browse files Browse the repository at this point in the history
Support Ruby 3.0 and up
  • Loading branch information
mvz authored Dec 27, 2023
2 parents 002afa1 + e253b4e commit 9e22f3e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
ruby: ["2.7", "3.0", "3.1", "3.2", jruby-9.4]
ruby: ["3.0", "3.1", "3.2", "3.3", "jruby-9.4"]
gemfile: [active_record_61, active_record_70, active_record_71]
exclude:
# The activerecord-jdbcsqlite3-adapter gem does not work with Rails 7.1 yet
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0

# Put development dependencies in the gemspec so rubygems.org knows about them
Gemspec/DevelopmentDependencies:
Expand Down
2 changes: 1 addition & 1 deletion acts_as_paranoid.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
spec.description = "Check the home page for more in-depth information."
spec.homepage = "https://github.com/ActsAsParanoid/acts_as_paranoid"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.required_ruby_version = ">= 3.0.0"

spec.metadata["rubygems_mfa_required"] = "true"

Expand Down

0 comments on commit 9e22f3e

Please sign in to comment.