Skip to content

Commit

Permalink
Ensure we're using compatible sqlite3 version for Ruby < 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanTron committed Nov 8, 2024
1 parent 0ff12ff commit 68e031b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ci/rails-7.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ gem 'rspec-rails', '~> 5.0'
platform :ruby do
gem 'pg'
gem 'mysql2'
gem 'sqlite3'
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new("3.0")
gem 'sqlite3', '~> 1.6.9'
else
gem 'sqlite3'
end
end

# JRuby Adapter Dependencies
Expand Down

0 comments on commit 68e031b

Please sign in to comment.