summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2019-01-04 15:21:11 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2019-01-04 15:21:11 -0800
commiteb3113b6aebbd8e1d73ebc5bab038a80263bc457 (patch)
tree5904e7efaa30894793de46145e052459a5e3f3e2
parentd3b1738b75f6bf086796efb116c731953fb02473 (diff)
downloadmixlib-shellout-lcg/revert-to-ruby-2.3.tar.gz
reverting back to ruby 2.3 supportlcg/revert-to-ruby-2.3
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 <lamont@scriptkiddie.org>
-rw-r--r--.travis.yml2
-rw-r--r--mixlib-shellout.gemspec2
2 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 5850028..cae9a2f 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-shellout.gemspec b/mixlib-shellout.gemspec
index 010eef4..9471cab 100644
--- a/mixlib-shellout.gemspec
+++ b/mixlib-shellout.gemspec
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
s.email = "info@chef.io"
s.homepage = "https://github.com/chef/mixlib-shellout"
- s.required_ruby_version = ">= 2.5"
+ s.required_ruby_version = ">= 2.3"
s.require_path = "lib"
s.files = %w{LICENSE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }