Drop Ruby 2.6 support (#1311)

Ruby 2.6 has ended on March 2022
https://www.ruby-lang.org/en/news/2021/11/24/ruby-2-6-9-released/
This commit is contained in:
Yasuo Honda 2022-04-12 21:25:23 +09:00 committed by GitHub
parent b5e67adbf3
commit 08b2447a15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 13 deletions

View File

@ -18,10 +18,6 @@ jobs:
ruby:
- 3.0.2
- 2.7.4
- 2.6.7
exclude:
- rails: v7.0.0
ruby: 2.6.7
env:
DB: sqlite3
RAILS: ${{ matrix.rails }}
@ -49,10 +45,6 @@ jobs:
ruby:
- 3.0.2
- 2.7.4
- 2.6.7
exclude:
- rails: v7.0.0
ruby: 2.6.7
env:
DB: mysql
RAILS: ${{ matrix.rails }}
@ -89,10 +81,6 @@ jobs:
ruby:
- 3.0.2
- 2.7.4
- 2.6.7
exclude:
- rails: v7.0.0
ruby: 2.6.7
env:
DB: postgres
RAILS: ${{ matrix.rails }}

View File

@ -12,7 +12,7 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/activerecord-hackery/ransack"
s.summary = %q{Object-based searching for Active Record.}
s.description = %q{Ransack is the successor to the MetaSearch gem. It improves and expands upon MetaSearch's functionality, but does not have a 100%-compatible API.}
s.required_ruby_version = '>= 2.6'
s.required_ruby_version = '>= 2.7'
s.license = 'MIT'
s.add_dependency 'activerecord', '>= 6.0.4'