summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2016-06-30 12:04:10 -0700
committerTim Smith <tsmith@chef.io>2016-06-30 12:04:10 -0700
commitde0332757c61ffb49ef3276783a715f012925575 (patch)
treeacbeab4982b82459db2ed2731c150dc2e910bf13 /Gemfile
parent5f96cc190fb355526fdde957c2522a09c4508a77 (diff)
downloadchef-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--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index e2f4555af1..2437666bfe 100644
--- a/Gemfile
+++ b/Gemfile
@@ -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'