diff options
author | Tim Smith <tsmith@chef.io> | 2017-02-09 17:43:04 +0000 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2017-02-09 17:43:04 +0000 |
commit | 71efae05036f8e0e3e16bfa98f0902cb39eea4f4 (patch) | |
tree | 8243d363cd434b9d88d01ed6ca9e4614cac4dec5 /chef.gemspec | |
parent | b9ec59f8dfd92e7b70b54dd890f949a5e5e1e4a6 (diff) | |
download | chef-71efae05036f8e0e3e16bfa98f0902cb39eea4f4.tar.gz |
Bump minimum required ruby version to 2.2.2rack
Ruby 2.2 is still not compatible with the latest rack. We need to actually specify 2.2.2+ which is what rack and others now require.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'chef.gemspec')
-rw-r--r-- | chef.gemspec | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chef.gemspec b/chef.gemspec index dd2d7d3bf2..4e20d7e22d 100644 --- a/chef.gemspec +++ b/chef.gemspec @@ -11,9 +11,9 @@ Gem::Specification.new do |s| s.license = "Apache-2.0" s.author = "Adam Jacob" s.email = "adam@chef.io" - s.homepage = "http://www.chef.io" + s.homepage = "https://www.chef.io" - s.required_ruby_version = ">= 2.2.0" + s.required_ruby_version = ">= 2.2.2" s.add_dependency "chef-config", "= #{Chef::VERSION}" |