Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Rails 6.0 #37

Merged
merged 1 commit into from
Dec 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ jobs:
bundler-cache: true
- name: Install Appraisal Dependencies
run: bundle exec appraisal install
- name: Test with Rails 6.0
run: bundle exec appraisal rails-6-0 rake spec
- name: Test with Rails 6.1
run: bundle exec appraisal rails-6-1 rake spec
- name: Test with Rails 7.0
Expand Down
4 changes: 0 additions & 4 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
appraise "rails-6-0" do
gem "rails", "~> 6.0"
end

appraise "rails-6-1" do
gem "rails", "~> 6.1"
end
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PATH
remote: .
specs:
active_recall (2.0.2)
activerecord (>= 6.0, < 9.0)
activesupport (>= 6.0, < 9.0)
activerecord (>= 6.1, < 9.0)
activesupport (>= 6.1, < 9.0)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -250,7 +250,7 @@ PLATFORMS
DEPENDENCIES
active_recall!
appraisal
rails (>= 6.0, < 9.0)
rails (>= 6.1, < 9.0)
rake (>= 12.0)
rdoc
rspec (>= 3.0)
Expand Down
6 changes: 3 additions & 3 deletions active_recall.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

spec.add_development_dependency "appraisal"
spec.add_development_dependency "rails", ">= 6.0", "< 9.0"
spec.add_development_dependency "rails", ">= 6.1", "< 9.0"
spec.add_development_dependency "rake", ">= 12.0"
spec.add_development_dependency "rdoc"
spec.add_development_dependency "rspec", ">= 3.0"
spec.add_development_dependency "sqlite3", "~> 1.5"
spec.add_development_dependency "standard"
spec.add_runtime_dependency "activerecord", ">= 6.0", "< 9.0"
spec.add_runtime_dependency "activesupport", ">= 6.0", "< 9.0"
spec.add_runtime_dependency "activerecord", ">= 6.1", "< 9.0"
spec.add_runtime_dependency "activesupport", ">= 6.1", "< 9.0"
spec.required_ruby_version = ">= 3.1"
end
7 changes: 0 additions & 7 deletions gemfiles/rails_6_0.gemfile

This file was deleted.

231 changes: 0 additions & 231 deletions gemfiles/rails_6_0.gemfile.lock

This file was deleted.

4 changes: 2 additions & 2 deletions gemfiles/rails_6_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PATH
remote: ..
specs:
active_recall (2.0.2)
activerecord (>= 6.0, < 9.0)
activesupport (>= 6.0, < 9.0)
activerecord (>= 6.1, < 9.0)
activesupport (>= 6.1, < 9.0)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rails_7_0.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PATH
remote: ..
specs:
active_recall (2.0.2)
activerecord (>= 6.0, < 9.0)
activesupport (>= 6.0, < 9.0)
activerecord (>= 6.1, < 9.0)
activesupport (>= 6.1, < 9.0)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/rails_7_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PATH
remote: ..
specs:
active_recall (2.0.2)
activerecord (>= 6.0, < 9.0)
activesupport (>= 6.0, < 9.0)
activerecord (>= 6.1, < 9.0)
activesupport (>= 6.1, < 9.0)

GEM
remote: https://rubygems.org/
Expand Down
Loading