Merge pull request #1189 from yahonda/require_ruby26

Drop Ruby 2.5 or older versions of Ruby
This commit is contained in:
David Rodríguez 2020-12-30 11:15:29 +01:00 committed by GitHub
commit 48b2e285bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@
*Aaron Lipman*
* Drop support for rubies under 2.5. PR #1189
## 2.4.0 - 2020-11-27
*

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 and Mongoid (currently).}
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.3'
s.required_ruby_version = '>= 2.6'
s.license = 'MIT'
s.add_dependency 'activerecord', '>= 5.2.4'