Skip to content

Commit

Permalink
Stop supporting EOL versions
Browse files Browse the repository at this point in the history
  • Loading branch information
abicky committed May 28, 2024
1 parent be950f4 commit 3cc3606
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,19 @@ jobs:
fail-fast: false
matrix:
ruby-version:
- '2.6'
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- '3'
activerecord-version:
- '6_0'
- '6_1'
- '7_0'
- '7_1'
- 'latest'
mysql-version:
- '5.7'
- '8.0'
exclude:
# activerecord-7 doesn't support Ruby 2.6
- ruby-version: '2.6'
activerecord-version: '7_0'
- ruby-version: '2.6'
activerecord-version: '7_1'

services:
mysql:
Expand Down
4 changes: 2 additions & 2 deletions activerecord-debug_errors.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
spec.description = %q{ActiveRecord::DebugErrors is an extension of activerecord to display useful debug logs on errors.}
spec.homepage = "https://github.com/abicky/activerecord-debug_errors"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
Expand All @@ -22,5 +22,5 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_runtime_dependency "activerecord", ">= 6"
spec.add_runtime_dependency "activerecord", ">= 6.1"
end

0 comments on commit 3cc3606

Please sign in to comment.