Skip to content

Instantly share code, notes, and snippets.

@psi
Created December 4, 2014 22:46
Show Gist options
  • Save psi/a74550123682f3383e43 to your computer and use it in GitHub Desktop.
Save psi/a74550123682f3383e43 to your computer and use it in GitHub Desktop.
source 'https://supermarket.getchef.com'
metadata
excluded_cookbooks = []
excluded_cookbooks << File.dirname(__FILE__).split('/').last
Dir['../*'].each do |cookbook_path|
cookbook_name = File.basename(cookbook_path)
next if excluded_cookbooks.include?(cookbook_name)
cookbook cookbook_name, path: cookbook_path
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment