File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -9,3 +9,6 @@ gem 'rails_sql_prettifier'
99
1010# Specify your gem's dependencies in active_record_where_assoc.gemspec
1111gemspec
12+
13+ # Version 2.8.0 contains sqlite 3.51.0, which has a bug: https://sqlite.org/forum/forumpost/5465c0f684
14+ gem 'sqlite3' , '!= 2.8.0'
Original file line number Diff line number Diff line change 33source "https://rubygems.org"
44
55gem "activerecord", github: "rails/rails", branch: "8-0-stable"
6- gem "sqlite3"
76gem "pg", "~> 1.1"
87gem "mysql2", "~> 0.5" if ENV["CI"] || ENV["ALL_DB"] || ENV["DB"] == "mysql"
98gem "prime"
109
10+ # Version 2.8.0 contains sqlite 3.51.0, which has a bug: https://sqlite.org/forum/forumpost/5465c0f684
11+ gem 'sqlite3', '!= 2.8.0'
12+
1113gemspec path: "../"
You can’t perform that action at this time.
0 commit comments