From a34f668bdf22fb2639bd9e2207414e1f3b2f2349 Mon Sep 17 00:00:00 2001 From: Ed Robinson Date: Wed, 4 May 2016 11:36:46 +0100 Subject: [PATCH] Fix string-scrub dependency on ruby > 2 string-scrub 0.1.0 dropped today, and the strict ruby version constraint stops fluent from being installed on a modern ruby. --- fluentd.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluentd.gemspec b/fluentd.gemspec index ec7eb7a678..5b0de02fe3 100644 --- a/fluentd.gemspec +++ b/fluentd.gemspec @@ -27,7 +27,7 @@ Gem::Specification.new do |gem| gem.add_runtime_dependency("sigdump", ["~> 0.2.2"]) gem.add_runtime_dependency("tzinfo", [">= 1.0.0"]) gem.add_runtime_dependency("tzinfo-data", [">= 1.0.0"]) - gem.add_runtime_dependency("string-scrub", [">= 0.0.3"]) + gem.add_runtime_dependency("string-scrub", [">= 0.0.3", "<= 0.0.5"]) gem.add_development_dependency("rake", [">= 0.9.2"]) gem.add_development_dependency("flexmock", ["~> 1.3.3"])