summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-08-17 15:53:59 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2016-08-22 10:05:27 -0700
commitdf7648421014da98dcd90d7f67eeb1008d59f806 (patch)
treea82633a08dc61e4d6511d26b66b8f5f25596829d
parent251b953c4366e52ef7782aed9bdabb8c28a10f6f (diff)
downloadchef-df7648421014da98dcd90d7f67eeb1008d59f806.tar.gz
remove ruby 2.1 support
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--.travis.yml5
-rw-r--r--Gemfile1
-rw-r--r--chef.gemspec2
3 files changed, 1 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index d8ff98ad7b..afbc8a8a96 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,11 +30,6 @@ env:
matrix:
include:
- - rvm: 2.1.9
- sudo: true
- script: sudo -E $(which bundle) exec rake spec;
- # also remove integration / external tests
- bundler_args: --without changelog development docgen guard integration maintenance omnibus_package tools aix bsd mac_os_x solaris windows --frozen
- rvm: 2.2.5
sudo: true
script: sudo -E $(which bundle) exec rake spec;
diff --git a/Gemfile b/Gemfile
index 6fa1780750..e06ab4ed44 100644
--- a/Gemfile
+++ b/Gemfile
@@ -66,7 +66,6 @@ end
group(:development, :test) do
gem "simplecov"
- gem "rack", "< 2.0" # 2.0 requires Ruby 2.2+
# for testing new chefstyle rules
# gem 'chefstyle', github: 'chef/chefstyle'
diff --git a/chef.gemspec b/chef.gemspec
index 920a269de0..78db042376 100644
--- a/chef.gemspec
+++ b/chef.gemspec
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.email = "adam@chef.io"
s.homepage = "http://www.chef.io"
- s.required_ruby_version = ">= 2.1.0"
+ s.required_ruby_version = ">= 2.2.0"
s.add_dependency "chef-config", "= #{Chef::VERSION}"