Skip to content

Commit

Permalink
Pin sqlite3 to 1.x, to fix Rails 7 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mshibuya committed Jun 1, 2024
1 parent 5e8510b commit 65e5e8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "https://rubygems.org"

gem "rails", ">= 6.0.0"
gem "activemodel-serializers-xml"
gem 'sqlite3', platforms: :ruby
gem "sqlite3", "~> 1.0", platforms: :ruby
gem "activerecord-jdbcsqlite3-adapter", platform: [:jruby, :truffleruby]
# See https://github.com/fog/fog-google/issues/535 for this restriction.
gem "fog-google", "~> 1.13.0" if RUBY_VERSION.to_f < 2.7
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 @@ -2,7 +2,7 @@ source "https://rubygems.org"

gem "rails", "~> 7.0.0"
gem "activemodel-serializers-xml"
gem "sqlite3", platforms: :ruby
gem "sqlite3", "~> 1.0", platforms: :ruby
gem "activerecord-jdbcsqlite3-adapter", platform: [:jruby, :truffleruby]

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 @@ -2,7 +2,7 @@ source "https://rubygems.org"

gem "rails", "~> 7.1.0"
gem "activemodel-serializers-xml"
gem "sqlite3", platforms: :ruby
gem "sqlite3", "~> 1.0", platforms: :ruby
gem "activerecord-jdbcsqlite3-adapter", platform: [:jruby, :truffleruby]
gem "observer" # Workaround for https://github.com/rmagick/rmagick/pull/1411

Expand Down

0 comments on commit 65e5e8e

Please sign in to comment.