From d57b05fcf57b3d6ec1cf898aa2253378b322c1d6 Mon Sep 17 00:00:00 2001 From: Lamont Granquist Date: Fri, 4 Jan 2019 15:19:25 -0800 Subject: reverting back to ruby 2.3 support it appears we break the world if we go to >= 2.5 and we need to do this a bit more cautiously. Signed-off-by: Lamont Granquist --- .travis.yml | 2 ++ mixlib-log.gemspec | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6595c13..6275b42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,8 @@ before_install: matrix: include: + - rvm: 2.3.8 + - rvm: 2.4.5 - rvm: 2.5.3 - rvm: 2.6 - rvm: ruby-head diff --git a/mixlib-log.gemspec b/mixlib-log.gemspec index 56a7c14..3f51174 100644 --- a/mixlib-log.gemspec +++ b/mixlib-log.gemspec @@ -11,5 +11,5 @@ Gem::Specification.new do |gem| gem.authors = ["Chef Software, Inc."] gem.files = %w{LICENSE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } gem.require_paths = ["lib"] - gem.required_ruby_version = ">= 2.5" + gem.required_ruby_version = ">= 2.3" end -- cgit v1.2.1