From 186766856a21dbd9480f2559924308de7d47c788 Mon Sep 17 00:00:00 2001 From: Tim Riley Date: Mon, 11 Nov 2024 05:45:09 +1100 Subject: [PATCH] Use latest sqlite3, fix tests with Active Record 8 For some reason this gem dependency was added with a now-old 1.x version constraint. Active Record in Rails 8 now depends on sqlite 2.x. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 38fc49f..ff0cf3d 100644 --- a/Gemfile +++ b/Gemfile @@ -29,5 +29,5 @@ group :development, :test do gem "activerecord" gem "rom-sql" gem "sequel" - gem "sqlite3", "~> 1.4" + gem "sqlite3" end