Skip to content

Commit

Permalink
Drop Rails 5.2 and Ruby 2.7 support
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeKaraszi committed Oct 12, 2023
1 parent 3077e16 commit d3c77af
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,12 @@ jobs:
strategy:
fail-fast: false
matrix:
rails: [52, 60, 61, 70, 71]
ruby: [2.7, '3.0', 3.1, 3.2]
rails: [60, 61, 70, 71]
ruby: ['3.0', 3.1, 3.2]
experimental: [false]
exclude:
- ruby: 3.0
rails: 52
- ruby: 3.1
rails: 52
- ruby: 3.2
rails: 52
# exclude:
# - ruby: 3.0
# rails: 52
include:
- rails: head
ruby: '3.0'
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require:

AllCops:
NewCops: enable
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
DisplayStyleGuide: true
DisplayCopNames: true
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion active_record_extended.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |spec|

spec.files = Dir["README.md", "lib/**/*"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7"
spec.required_ruby_version = ">= 3.0"
spec.metadata["rubygems_mfa_required"] = "true"

spec.add_dependency "activerecord", ">= 5.2", "< 7.2.0"
Expand Down

0 comments on commit d3c77af

Please sign in to comment.