diff options
-rw-r--r-- | Gemfile | 2 | ||||
-rwxr-xr-x | ci/bundle_install.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -13,7 +13,7 @@ gem "chef", path: "." gem "chef-config", path: File.expand_path("../chef-config", __FILE__) if File.exist?(File.expand_path("../chef-config", __FILE__)) # Ensure that we can always install rake, regardless of gem groups -gem "rake" +gem "rake", group: [ :default, :omnibus_package, :development ] gem "bundler" gem "cheffish" diff --git a/ci/bundle_install.sh b/ci/bundle_install.sh index c4b23001a6..37c5db9068 100755 --- a/ci/bundle_install.sh +++ b/ci/bundle_install.sh @@ -5,5 +5,5 @@ set -evx gem environment bundler_version=$(grep bundler omnibus_overrides.rb | cut -d'"' -f2) gem install bundler -v $bundler_version --user-install -export BUNDLE_WITHOUT=default:omnibus_package:development:test:pry:integration:docgen:maintenance:changelog:travis:aix:bsd:linux:mac_os_x:solaris:windows +export BUNDLE_WITHOUT=default:omnibus_package:test:pry:integration:docgen:maintenance:changelog:travis:aix:bsd:linux:mac_os_x:solaris:windows bundle _${bundler_version}_ install |