From 73506f9b368f00e2bdf9a77365f03f215382d012 Mon Sep 17 00:00:00 2001 From: Lamont Granquist Date: Tue, 15 Jan 2019 15:05:46 -0800 Subject: [PATCH] also drop ruby 2.2 support it is EOL 2.3 still supported for inspec-on-chef-12 purposes. Signed-off-by: Lamont Granquist --- .travis.yml | 1 - chefstyle.gemspec | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4e4164f..1083343 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,6 @@ bundler_args: --jobs 7 --without docs debug before_install: gem install bundler -v 1.10.6 rvm: - - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 diff --git a/chefstyle.gemspec b/chefstyle.gemspec index 60f5f0b..9d2f460 100644 --- a/chefstyle.gemspec +++ b/chefstyle.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |spec| spec.summary = %q{Rubocop configuration for Chef's ruby projects} spec.homepage = "https://github.com/chef/chefstyle" spec.license = "Apache-2.0" - spec.required_ruby_version = ">= 2.2" + spec.required_ruby_version = ">= 2.3" spec.files = %w{LICENSE chefstyle.gemspec Gemfile} + Dir.glob("{bin,config,lib}/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) } spec.executables = %w{chefstyle}