Skip to content

Commit

Permalink
Drop Rails < 7.0 support (#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala authored Nov 9, 2024
1 parent 89d7195 commit 5bbbe95
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 272 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
- "3.2"
- "3.3"
rails:
- rails_61
- rails_70
- rails_71
- rails_72
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

* Remove support for Ruby `< 3.1`
* Remove support for Rails `< 7.0`
* Test against Rails 8.0

## 2.0.2 [](https://github.com/activeadmin/arbre/compare/v2.0.1...v2.0.2)

* Prefer `require_relative` for internal requires. [#622][] by [@tagliala][]
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: .
specs:
arbre (2.0.2)
activesupport (>= 3.0.0)
activesupport (>= 7.0)

GEM
remote: http://rubygems.org/
Expand Down Expand Up @@ -220,7 +220,7 @@ GEM
rspec-mocks (3.13.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-rails (7.0.1)
rspec-rails (7.1.0)
actionpack (>= 7.0)
activesupport (>= 7.0)
railties (>= 7.0)
Expand Down
2 changes: 1 addition & 1 deletion arbre.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ Gem::Specification.new do |s|

s.required_ruby_version = '>= 3.1'

s.add_dependency("activesupport", ">= 3.0.0")
s.add_dependency("activesupport", ">= 7.0")
end
23 changes: 0 additions & 23 deletions gemfiles/rails_61/Gemfile

This file was deleted.

239 changes: 0 additions & 239 deletions gemfiles/rails_61/Gemfile.lock

This file was deleted.

4 changes: 2 additions & 2 deletions gemfiles/rails_70/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: ../..
specs:
arbre (2.0.2)
activesupport (>= 3.0.0)
activesupport (>= 7.0)

GEM
remote: http://rubygems.org/
Expand Down Expand Up @@ -185,7 +185,7 @@ GEM
rspec-mocks (3.13.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-rails (7.0.1)
rspec-rails (7.1.0)
actionpack (>= 7.0)
activesupport (>= 7.0)
railties (>= 7.0)
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rails_71/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: ../..
specs:
arbre (2.0.2)
activesupport (>= 3.0.0)
activesupport (>= 7.0)

GEM
remote: http://rubygems.org/
Expand Down Expand Up @@ -219,7 +219,7 @@ GEM
rspec-mocks (3.13.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-rails (7.0.1)
rspec-rails (7.1.0)
actionpack (>= 7.0)
activesupport (>= 7.0)
railties (>= 7.0)
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rails_72/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PATH
remote: ../..
specs:
arbre (2.0.2)
activesupport (>= 3.0.0)
activesupport (>= 7.0)

GEM
remote: http://rubygems.org/
Expand Down Expand Up @@ -212,7 +212,7 @@ GEM
rspec-mocks (3.13.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-rails (7.0.1)
rspec-rails (7.1.0)
actionpack (>= 7.0)
activesupport (>= 7.0)
railties (>= 7.0)
Expand Down

0 comments on commit 5bbbe95

Please sign in to comment.