From 96d7d1cc4f26b9131d53c08125213cfb8b269351 Mon Sep 17 00:00:00 2001 From: James Stocks Date: Tue, 2 Jun 2020 14:49:24 +0100 Subject: [PATCH] Pin ffi to 1.12.2 due to Windows crash See https://github.com/ffi/ffi/issues/784 Signed-off-by: James Stocks --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 9993216b00..65644e96a1 100644 --- a/Gemfile +++ b/Gemfile @@ -9,7 +9,7 @@ gem "inspec", path: "." # in it in order to package the executable. Hence the odd backwards dependency. gem "inspec-bin", path: "./inspec-bin" -gem "ffi", ">= 1.9.14" +gem "ffi", '1.12.2' # 1.13 does not work on Windows: https://github.com/ffi/ffi/issues/784 group :omnibus do gem "rb-readline"