chef-partners/cookbook-guide-generator

View on GitHub
cookbooks/code_generator/templates/default/build-cookbook/Berksfile.erb

Summary

Maintainability
Test Coverage
source 'https://supermarket.chef.io'

metadata
<% if build_cookbook_parent_is_cookbook -%>

cookbook 'delivery-truck',
  git: 'https://github.com/chef-cookbooks/delivery-truck.git',
  branch: 'master'

# This is so we know where to get delivery-truck's dependency
cookbook 'delivery-sugar',
  git: 'https://github.com/chef-cookbooks/delivery-sugar.git',
  branch: 'master'
<% end -%>

group :delivery do
  cookbook 'delivery_build', git: 'https://github.com/chef-cookbooks/delivery_build'
  cookbook 'delivery-base', git: 'https://github.com/chef-cookbooks/delivery-base'
  cookbook 'test', path: './test/fixtures/cookbooks/test'
end