Skip to content
This repository has been archived by the owner on Jul 14, 2021. It is now read-only.

Commit

Permalink
Merge pull request #1393 from chef/appbundle
Browse files Browse the repository at this point in the history
Be more selective about what dev gems we bundle
  • Loading branch information
tas50 authored Sep 21, 2017
2 parents 0925f97 + 2733e13 commit 7827fb8
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions omnibus/config/software/chef-dk.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,12 @@

env["NOKOGIRI_USE_SYSTEM_LIBRARIES"] = "true"

appbundle "berkshelf", lockdir: project_dir, without: %w{guard changelog}, env: env
appbundle "chef", lockdir: project_dir, without: %w{changelog integration docgen maintenance ci travis}, env: env
appbundle "chef", lockdir: project_dir, without: %w{integration docgen maintenance ci travis}, env: env
appbundle "foodcritic", lockdir: project_dir, without: %w{development}, env: env
appbundle "test-kitchen", lockdir: project_dir, without: %w{changelog debug docs}, env: env
appbundle "inspec", lockdir: project_dir, without: %w{deploy tools maintenance}, env: env

%w{chef-dk chef-vault foodcritic ohai test-kitchen opscode-pushy-client cookstyle inspec dco}.each do |gem|
%w{chef-dk chef-vault ohai opscode-pushy-client cookstyle dco berkshelf}.each do |gem|
appbundle gem, lockdir: project_dir, without: %w{changelog}, env: env
end

Expand Down

0 comments on commit 7827fb8

Please sign in to comment.