Skip to content

Commit

Permalink
Constrain sqlite3 versions for legacy Ruby versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pat committed Jan 14, 2024
1 parent 18e369e commit 816dc2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ if RUBY_VERSION.to_f >= 2.5 && RUBY_VERSION.to_f < 3.1
appraise "rails-6.0" do
gem "rails", "~> 6.0.0"
gem "mysql2", "~> 0.5.0"
gem "sqlite3", "~> 1.4"
gem "sqlite3", "~> 1.4", "< 1.5.0"
end
end

if RUBY_VERSION.to_f >= 2.5
appraise "rails-6.1" do
gem "rails", "~> 6.1.0"
gem "mysql2", "~> 0.5.0"
gem "sqlite3", "~> 1.4"
gem "sqlite3", "~> 1.4", "< 1.6.0"
end
end

Expand Down

0 comments on commit 816dc2f

Please sign in to comment.