Created
March 1, 2013 02:34
-
-
Save cdenneen/5062070 to your computer and use it in GitHub Desktop.
Puppetfile
This file contains 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
# This file manages Puppet module dependencies. | |
# | |
# It works a lot like Bundler. We provide some core modules by | |
# default. This ensures at least the ability to construct a basic | |
# environment. | |
def github(name, version, options = nil) | |
options ||= {} | |
options[:repo] ||= "boxen/puppet-#{name}" | |
mod name, version, :github_tarball => options[:repo] | |
end | |
# Core modules for a basic development environment. You can replace | |
# some/most of those if you want, but it's not recommended. | |
# Includes many of our custom types and providers, as well as global | |
# config. Required. | |
github "boxen", "1.0.2" | |
# Core modules for a basic development environment. You can replace | |
# some/most of these if you want, but it's not recommended. | |
github "dnsmasq", "1.0.0" | |
github "gcc", "1.0.0" | |
github "git", "1.0.0" | |
github "homebrew", "1.0.0" | |
github "hub", "1.0.0" | |
github "inifile", "0.9.0", :repo => "cprice-puppet/puppetlabs-inifile" | |
github "nginx", "1.0.0" | |
github "nodejs", "1.0.0" | |
github "nvm", "1.0.0" | |
github "ruby", "1.0.0" | |
github "stdlib", "3.0.0", :repo => "puppetlabs/puppetlabs-stdlib" | |
github "sudo", "1.0.0" | |
github "alfred", "1.0.1", :repo => "boxen/puppet-alfred" | |
github "gitx", "1.1.0", :repo => "boxen/puppet-gitx" | |
github "textmate", "1.0.0", :repo => "boxen/puppet-textmate" | |
github "things", "1.0.0", :repo => "boxen/puppet-things" | |
github "sparrow", "1.0.0", :repo => "boxen/puppet-sparrow" | |
github "osx", "1.0.0", :repo => "boxen/puppet-osx" | |
# Optional/custom modules. There are tons available at | |
# https://github.com/boxen. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment