From be7f083d02d8f4220fd80e29abd356e29a74dcb9 Mon Sep 17 00:00:00 2001 From: cintamani Date: Fri, 8 Feb 2019 11:17:36 +0000 Subject: [PATCH] Fix sqlite3 version to 1.3.13 as the new 1.4 version released last week is not compatible with the adapters currently in use --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 79f6b954..59f77c9d 100644 --- a/Gemfile +++ b/Gemfile @@ -53,7 +53,7 @@ group :bench do end group :test do - gem 'sqlite3', platform: (@windows_platforms + [:ruby]) + gem 'sqlite3', '~> 1.3.13', platform: (@windows_platforms + [:ruby]) platforms :jruby do if version == 'master' || version >= '5' gem 'activerecord-jdbcsqlite3-adapter', '~> 50'