my-boxen/Puppetfile

26 lines
1.1 KiB
Text
Raw Normal View History

2012-10-03 14:28:53 -04:00
# This file manages Puppet module dependencies.
#
2012-10-03 16:47:13 -04:00
# It works a lot like Bundler. We provide some core modules by
# default. This ensures at least the ability to construct a basic
# environment.
2012-10-03 14:28:53 -04:00
2012-10-03 16:47:13 -04:00
# Includes many of our custom types and providers, as well as global
# config. Required.
mod "boxen", "0.0.11", :github_tarball => "boxen/puppet-boxen"
mod "git", "0.0.2", :github_tarball => "boxen/puppet-git"
mod "homebrew", "0.0.4", :github_tarball => "boxen/puppet-homebrew"
mod "nginx", "0.0.2", :github_tarball => "boxen/puppet-nginx"
mod "nvm", "0.0.5", :github_tarball => "boxen/puppet-nvm"
mod "rbenv", "0.0.2", :github_tarball => "boxen/puppet-rbenv"
mod "ruby", "0.0.6", :github_tarball => "boxen/puppet-ruby"
2012-10-03 14:28:53 -04:00
# Core modules for a basic development environment.
# You can replace some/most of those if you want, but it's not recommended.
2012-10-03 23:35:39 -04:00
%w(nodejs hub inifile sudo).each do |modulename|
2012-10-03 18:30:37 -04:00
mod modulename, "0.0.1", :github_tarball => "boxen/puppet-#{modulename}"
end
2012-10-02 23:21:31 -04:00
2012-10-03 14:28:53 -04:00
# Add your custom modules here.
# There are tons available at https://github.com/boxen.