Skip to content

Commit

Permalink
Fix local sqlite3 build
Browse files Browse the repository at this point in the history
Main change was to sqlite3. The 2.0 driver broke things

Locally, was having trouble compiling mysql2,
so hardc oded a version that is working
  • Loading branch information
kbrock committed Jun 12, 2024
1 parent d2e2f2a commit 262c505
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ source 'https://rubygems.org'
gemspec

gem "activerecord", "~> 6.1.7"
gem "mysql2"
gem "mysql2", ">= 0.5.6"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 1.7.3"
4 changes: 2 additions & 2 deletions gemfiles/gemfile_52.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
source "https://rubygems.org"

gem "activerecord", "~> 5.2.8"
gem "mysql2"
gem "mysql2", ">= 0.5.6"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 1.7.3"

gemspec path: "../"
4 changes: 2 additions & 2 deletions gemfiles/gemfile_60.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
source "https://rubygems.org"

gem "activerecord", "~> 6.0.6"
gem "mysql2"
gem "mysql2", ">= 0.5.6"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 1.7.3"

gemspec path: "../"
4 changes: 2 additions & 2 deletions gemfiles/gemfile_61.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
source "https://rubygems.org"

gem "activerecord", "~> 6.1.7"
gem "mysql2"
gem "mysql2", ">= 0.5.6"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 1.7.3"

gemspec path: "../"
4 changes: 2 additions & 2 deletions gemfiles/gemfile_70.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
source "https://rubygems.org"

gem "activerecord", "~> 7.0.8"
gem "mysql2"
gem "mysql2", ">= 0.5.6"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 1.7.3"

gemspec path: "../"
4 changes: 2 additions & 2 deletions gemfiles/gemfile_71.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
source "https://rubygems.org"

gem "activerecord", "~> 7.1.2"
gem "mysql2"
gem "mysql2", ">= 0.5.6"
gem "pg"
gem "sqlite3"
gem "sqlite3", "~> 1.7.3"

gemspec path: "../"

0 comments on commit 262c505

Please sign in to comment.