Skip to content

Commit

Permalink
rails 8.0.0 requires sqlite3 version >= 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skaes committed Nov 17, 2024
1 parent 80c5daf commit 9e98c2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ end
appraisals.each do |rails_version|
appraise "rails-#{rails_version}" do
gem "rails", rails_version
if rails_version < "8.0.0"
gem "sqlite3", "~> 1.7"
else
gem "sqlite3", "~> 2.1"
end
gem "sprockets"
gem "sass-rails"
gem "uglifier"
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ source "https://rubygems.org"
gemspec

gem "rails"
gem "sqlite3", "~> 1.7"
gem "sqlite3"
gem "sprockets"
gem "sass-rails"
gem "uglifier"
Expand Down

0 comments on commit 9e98c2e

Please sign in to comment.