From adcc865a70cdd67d5f91f883b6d230c1ad207bbf Mon Sep 17 00:00:00 2001 From: ricky onshift Date: Mon, 15 Jul 2019 14:36:34 -0400 Subject: [PATCH] Pin fpm 1.10.0 as 1.11.0 drops ruby 1.9x support --- fpm.gemspec | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fpm.gemspec b/fpm.gemspec index 9a74550b6d..99ea37308f 100644 --- a/fpm.gemspec +++ b/fpm.gemspec @@ -47,7 +47,9 @@ Gem::Specification.new do |spec| spec.add_dependency("childprocess", "< 1.0.0") # license: ??? # For calling functions in dynamic libraries - spec.add_dependency("ffi") # license: GPL3/LGPL3 + # Note: This is pinned because 1.11.0 drops 1.9 ruby support + # Ref: https://github.com/ffi/ffi/issues/700 + spec.add_dependency("ffi", "<= 1.10.0") # license: GPL3/LGPL3 spec.add_development_dependency("rake", "~> 10") # license: MIT