Skip to content

Commit

Permalink
Drop support for Ruby 2.6 (#8023)
Browse files Browse the repository at this point in the history
Ransack 4 requires Ruby 2.7, so ActiveAdmin 3.x series does not support
Ruby 2.6 already and this commit fixes the misleading gemspec version

It has been decided not to run CI tests against 2.7 because it is in EOL

Close #8022
  • Loading branch information
tagliala committed Jul 25, 2023
1 parent 040ab70 commit 2692838
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Expand Up @@ -11,7 +11,7 @@ require:

AllCops:
DisabledByDefault: true
TargetRubyVersion: 2.6
TargetRubyVersion: 2.7

Exclude:
- tmp/development_apps/**/*
Expand Down
2 changes: 1 addition & 1 deletion activeadmin.gemspec
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|

s.metadata = { "rubygems_mfa_required" => "true" }

s.required_ruby_version = ">= 2.6"
s.required_ruby_version = ">= 2.7"

s.add_dependency "arbre", "~> 1.2", ">= 1.2.1"
s.add_dependency "formtastic", ">= 3.1", "< 5.0"
Expand Down

0 comments on commit 2692838

Please sign in to comment.