diff options
author | Tim Smith <tsmith@chef.io> | 2016-06-30 12:04:10 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2016-06-30 12:04:10 -0700 |
commit | de0332757c61ffb49ef3276783a715f012925575 (patch) | |
tree | acbeab4982b82459db2ed2731c150dc2e910bf13 /Gemfile | |
parent | 5f96cc190fb355526fdde957c2522a09c4508a77 (diff) | |
download | chef-de0332757c61ffb49ef3276783a715f012925575.tar.gz |
Depend on rack < 2
Rack 2.0 was released today and it requires Ruby 2.2+ now, which is
breaking Travis runs on anything that depends on Chef. This should get
our builds running again.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ end group(:development, :test) do gem "simplecov" - gem "rack" + gem "rack", "< 2.0" # for testing new chefstyle rules # gem 'chefstyle', github: 'chef/chefstyle' |