Skip to content

Commit

Permalink
Allow sqlite3 v2
Browse files Browse the repository at this point in the history
  • Loading branch information
lucascaton committed Dec 1, 2024
1 parent 3585b71 commit a050307
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ rails_versions = JSON.parse(Net::HTTP.get(URI('https://rubygems.org/api/v1/versi
gem 'activesupport', "~> #{current_version}"
gem 'activerecord', "~> #{current_version}"

gem 'sqlite3', '< 2' # v2.x isn't yet working. See: https://github.com/sparklemotion/sqlite3-ruby/issues/529
gem 'sqlite3'
end
end
2 changes: 1 addition & 1 deletion gemfiles/rails_6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 6.0.6.1'
gem 'activesupport', '~> 6.0.6.1'
gem 'sqlite3', '< 2'
gem 'sqlite3'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 6.1.7.10'
gem 'activesupport', '~> 6.1.7.10'
gem 'sqlite3', '< 2'
gem 'sqlite3'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 7.0.8.6'
gem 'activesupport', '~> 7.0.8.6'
gem 'sqlite3', '< 2'
gem 'sqlite3'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 7.1.5'
gem 'activesupport', '~> 7.1.5'
gem 'sqlite3', '< 2'
gem 'sqlite3'

gemspec path: '../'
2 changes: 1 addition & 1 deletion gemfiles/rails_7.2.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'activerecord', '~> 7.2.2'
gem 'activesupport', '~> 7.2.2'
gem 'sqlite3', '< 2'
gem 'sqlite3'

gemspec path: '../'

0 comments on commit a050307

Please sign in to comment.