Skip to content

Commit

Permalink
Merge pull request #15 from neighborland/ar7
Browse files Browse the repository at this point in the history
Require ActiveRecord 7
  • Loading branch information
teeparham authored Nov 6, 2024
2 parents 4a8501d + 48807d7 commit cbe58e2
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 22 deletions.
12 changes: 8 additions & 4 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
appraise "ar51" do
gem "activerecord", "~> 5.1.0"
appraise "ar70" do
gem "activerecord", "~> 7.0.0"
end

appraise "ar52" do
gem "activerecord", "~> 5.2.0"
appraise "ar71" do
gem "activerecord", "~> 7.1.0"
end

appraise "ar72" do
gem "activerecord", "~> 7.2.0"
end
8 changes: 0 additions & 8 deletions gemfiles/ar51.gemfile

This file was deleted.

8 changes: 0 additions & 8 deletions gemfiles/ar52.gemfile

This file was deleted.

12 changes: 12 additions & 0 deletions gemfiles/ar70.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal", "~> 2.0"
gem "byebug"
gem "minitest", "~> 5.22"
gem "rake", "~> 13.0"
gem "sqlite3", "~> 1.3"
gem "activerecord", "~> 7.0.0"

gemspec path: "../"
12 changes: 12 additions & 0 deletions gemfiles/ar71.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal", "~> 2.0"
gem "byebug"
gem "minitest", "~> 5.22"
gem "rake", "~> 13.0"
gem "sqlite3", "~> 1.3"
gem "activerecord", "~> 7.1.0"

gemspec path: "../"
12 changes: 12 additions & 0 deletions gemfiles/ar72.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "appraisal", "~> 2.0"
gem "byebug"
gem "minitest", "~> 5.22"
gem "rake", "~> 13.0"
gem "sqlite3", "~> 1.3"
gem "activerecord", "~> 7.2.0"

gemspec path: "../"
4 changes: 2 additions & 2 deletions sluggi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Gem::Specification.new do |spec|

spec.required_ruby_version = ">= 3.0.0"

spec.add_dependency "activerecord", "~> 6.0"
spec.add_dependency "railties", "~> 6.0"
spec.add_dependency "activerecord", "~> 7.0"
spec.add_dependency "railties", "~> 7.0"
end

0 comments on commit cbe58e2

Please sign in to comment.