Skip to content

Commit

Permalink
Pin sqlite3 to 1.x, as ActiveRecord is not compatible yet
Browse files Browse the repository at this point in the history
  • Loading branch information
mshibuya committed Jul 6, 2024
1 parent f46cee5 commit df4b82b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ group :active_record do

platforms :ruby, :mswin, :mingw, :x64_mingw do
gem 'mysql2', '>= 0.3.14'
gem 'sqlite3', '>= 1.3'
gem 'sqlite3', '~> 1.3'
end
end

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/composite_primary_keys.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ group :active_record do

platforms :ruby, :mswin, :mingw, :x64_mingw do
gem "mysql2", ">= 0.3.14"
gem "sqlite3", ">= 1.3"
gem "sqlite3", "~> 1.3"
end
end

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ group :active_record do

platforms :ruby, :mswin, :mingw, :x64_mingw do
gem "mysql2", ">= 0.3.14"
gem "sqlite3", ">= 1.3"
gem "sqlite3", "~> 1.3"
end

platforms :jruby do
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ group :active_record do

platforms :ruby, :mswin, :mingw, :x64_mingw do
gem "mysql2", ">= 0.3.14"
gem "sqlite3", ">= 1.3"
gem "sqlite3", "~> 1.3"
end

platforms :jruby do
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ group :active_record do

platforms :ruby, :mswin, :mingw, :x64_mingw do
gem "mysql2", ">= 0.3.14"
gem "sqlite3", ">= 1.3"
gem "sqlite3", "~> 1.3"
end
end

Expand Down
2 changes: 1 addition & 1 deletion spec/dummy_app/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ group :active_record do
platforms :ruby, :mswin, :mingw do
gem 'mysql2', '>= 0.3.14'
gem 'pg', '>= 0.14'
gem 'sqlite3', '>= 1.3.0'
gem 'sqlite3', '~> 1.3'
end

gem 'composite_primary_keys'
Expand Down

0 comments on commit df4b82b

Please sign in to comment.