From 2460a778211062160561fa8bb1dfc8a0c724f733 Mon Sep 17 00:00:00 2001 From: Benoit Tigeot Date: Sat, 18 May 2019 12:22:12 +0200 Subject: [PATCH] Deal with new ffi Ruby version requirement CI was failing for 1.9.2 and 1.9.3. This is due to https://github.com/ffi/ffi/pull/683 Related: - https://github.com/ffi/ffi/issues/699 --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 3db1f9a..a7ac70e 100644 --- a/Gemfile +++ b/Gemfile @@ -44,6 +44,8 @@ if RUBY_VERSION.to_f < 2 gem 'json', '< 2' gem 'term-ansicolor', '< 1.4.0' # used by cucumber gem 'tins', '~> 1.6.0' # used by term-ansicolor + # ffi dropped Ruby 1.8 support in 1.9.19 and Ruby 1.9 support in 1.11.0 + gem 'ffi', '< 1.9.19' else gem "cucumber" end