Skip to content

Commit

Permalink
Use sqlite3 < 2 for ruby 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
estolfo committed Sep 24, 2024
1 parent 8b8e4b0 commit e6eed1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ if RUBY_PLATFORM == 'java'
end
elsif frameworks_versions['rails'] =~ /^(4|5)/
gem 'sqlite3', '~> 1.3.6'
elsif RUBY_VERSION < '2.7'
elsif RUBY_VERSION <= '2.7'
gem 'sqlite3', '~> 1.4.4'
else
gem 'sqlite3', '~> 2.0'
Expand Down

0 comments on commit e6eed1b

Please sign in to comment.