Created
December 4, 2014 22:46
-
-
Save psi/a74550123682f3383e43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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