summaryrefslogtreecommitdiff
path: root/omnibus/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'omnibus/Gemfile')
-rw-r--r--omnibus/Gemfile9
1 files changed, 6 insertions, 3 deletions
diff --git a/omnibus/Gemfile b/omnibus/Gemfile
index 10acd55554..8cdaafa877 100644
--- a/omnibus/Gemfile
+++ b/omnibus/Gemfile
@@ -9,13 +9,16 @@ gem "pedump"
# This development group is installed by default when you run `bundle install`,
# but if you are using Omnibus in a CI-based infrastructure, you do not need
# the Test Kitchen-based build lab. You can skip these unnecessary dependencies
-# by running `bundle install --without development` to speed up build times.
+# by running `bundle config set --local without development && bundle install` to speed up build times.
group :development do
# Use Berkshelf for resolving cookbook dependencies
gem "berkshelf", ">= 7.0"
- # We pin here to the last release Ohai so prevent more current chef coming in
- gem "ohai"
+ # We have to use chef/ohai 16 until all builders are on ruby >= 2.7
+ gem "ohai", "~> 16.0"
+ gem "chef", "~> 16.0"
+ gem "chef-config", "~> 16.0"
+ gem "chef-utils", "~> 16.0"
# Use Test Kitchen with Vagrant for converging the build environment
gem "test-kitchen", ">= 1.23"