Commit 5494fe815d8bfbb7d66c35d86a0bda040efea487

Authored by Will Farrington
1 parent cbb0b65464

Add some docs to Puppetfile

Showing 1 changed file with 13 additions and 1 deletions Inline Diff

1 # This file manages Puppet module dependencies.
2 #
3 # It works a lot like Bundler. We provide some core modules by default.
4 # This ensures at least the ability to construct a basic environment.
5
6 # Includes many of our custom types and providers, as well as global config.
7 # Required.
8 mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen"
9
10 # Core modules for a basic development environment.
11 # You can replace some/most of those if you want, but it's not recommended.
%w(ruby rbenv nvm nodejs git hub inifile sudo homebrew xcode).each do |modulename| 1 12 %w(ruby rbenv nvm nodejs git hub inifile sudo homebrew xcode).each do |modulename|
mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}" 2 13 mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}"
end 3 14 end
4 15
mod "boxen", "0.0.1.1", :github_tarball => "boxen/puppet-boxen" 5 16 # Add your custom modules here.
17 # There are tons available at https://github.com/boxen.