Skip to content

Commit

Permalink
Use matching sqlite3 versions for Rails versions
Browse files Browse the repository at this point in the history
  • Loading branch information
excid3 committed May 23, 2024
1 parent 8e2dc61 commit 5a1fb91
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 17 deletions.
4 changes: 4 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
appraise "rails-6-1" do
gem "rails", "~> 6.1.0"
gem "sqlite3", "~> 1.7"
gem "activerecord-trilogy-adapter"
end

appraise "rails-7" do
gem "rails", "~> 7.0.0"
gem "sqlite3", "~> 1.7"
gem "activerecord-trilogy-adapter"
end

appraise "rails-7-1" do
gem "rails", "~> 7.1.0"
gem "sqlite3", "~> 1.7"
gem "trilogy"
end

appraise "rails-main" do
gem "rails", github: "rails/rails", branch: "main"
gem "sqlite3", "~> 2.0"
gem "trilogy"
end
2 changes: 1 addition & 1 deletion gemfiles/rails_6_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source "https://rubygems.org"
gem "standard"
gem "webmock"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 1.7"
gem "byebug", group: [:development, :test]
gem "appraisal"
gem "net-smtp"
Expand Down
8 changes: 4 additions & 4 deletions gemfiles/rails_6_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,9 @@ GEM
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (2.0.2-arm64-darwin)
sqlite3 (2.0.2-x86_64-darwin)
sqlite3 (2.0.2-x86_64-linux-gnu)
sqlite3 (1.7.3-arm64-darwin)
sqlite3 (1.7.3-x86_64-darwin)
sqlite3 (1.7.3-x86_64-linux)
standard (1.36.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
Expand Down Expand Up @@ -270,7 +270,7 @@ DEPENDENCIES
noticed!
pg
rails (~> 6.1.0)
sqlite3
sqlite3 (~> 1.7)
standard
webmock

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source "https://rubygems.org"
gem "standard"
gem "webmock"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 1.7"
gem "byebug", group: [:development, :test]
gem "appraisal"
gem "net-smtp"
Expand Down
8 changes: 4 additions & 4 deletions gemfiles/rails_7.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,9 @@ GEM
faraday (>= 0.17.5, < 3.a)
jwt (>= 1.5, < 3.0)
multi_json (~> 1.10)
sqlite3 (2.0.2-arm64-darwin)
sqlite3 (2.0.2-x86_64-darwin)
sqlite3 (2.0.2-x86_64-linux-gnu)
sqlite3 (1.7.3-arm64-darwin)
sqlite3 (1.7.3-x86_64-darwin)
sqlite3 (1.7.3-x86_64-linux)
standard (1.36.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
Expand Down Expand Up @@ -269,7 +269,7 @@ DEPENDENCIES
noticed!
pg
rails (~> 7.0.0)
sqlite3
sqlite3 (~> 1.7)
standard
webmock

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7_1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source "https://rubygems.org"
gem "standard"
gem "webmock"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 1.7"
gem "byebug", group: [:development, :test]
gem "appraisal"
gem "net-smtp"
Expand Down
8 changes: 4 additions & 4 deletions gemfiles/rails_7_1.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,9 @@ GEM
faraday (>= 0.17.5, < 3.a)
jwt (>= 1.5, < 3.0)
multi_json (~> 1.10)
sqlite3 (2.0.2-arm64-darwin)
sqlite3 (2.0.2-x86_64-darwin)
sqlite3 (2.0.2-x86_64-linux-gnu)
sqlite3 (1.7.3-arm64-darwin)
sqlite3 (1.7.3-x86_64-darwin)
sqlite3 (1.7.3-x86_64-linux)
standard (1.36.0)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.0)
Expand Down Expand Up @@ -293,7 +293,7 @@ DEPENDENCIES
noticed!
pg
rails (~> 7.1.0)
sqlite3
sqlite3 (~> 1.7)
standard
trilogy
webmock
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_main.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source "https://rubygems.org"
gem "standard"
gem "webmock"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 2.0"
gem "byebug", group: [:development, :test]
gem "appraisal"
gem "net-smtp"
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_main.gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ DEPENDENCIES
noticed!
pg
rails!
sqlite3
sqlite3 (~> 2.0)
standard
trilogy
webmock
Expand Down

0 comments on commit 5a1fb91

Please sign in to comment.