Last active
January 4, 2016 09:49
-
-
Save calebd/8604442 to your computer and use it in GitHub Desktop.
Brewfile
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
update | |
upgrade | |
install 'rbenv' | |
install 'ruby-build' | |
install 'redis' | |
install 'postgres' | |
install 'heroku' | |
install 'zsh-completions' | |
install 'pianobar' | |
tap 'phinze/cask' | |
install 'brew-cask' | |
cask install 'anvil' | |
cask install 'gitx' | |
cask install 'skype' | |
cask install 'slack' | |
cask install 'rdio' | |
cask install 'alfred' | |
cask install 'testflight' | |
cask install 'minecraft' | |
cask install 'reveal' | |
cask install 'reflector' | |
cask install 'instacast' | |
cask install 'hexfiend' | |
cask install 'omnidisksweeper' | |
cask install 'carbon-copy-cloner' | |
cask install 'google-hangouts' | |
cask install 'silverlight' | |
cask install 'sublime-text' | |
cask install 'harvest' | |
cask alfred link | |
cleanup |
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
#!/usr/bin/env ruby | |
Dir.mktmpdir do |dir| | |
path = "#{d}/Brewfile" | |
`curl "https://gist.github.com/calebd/8604442/raw/a197b22938dc3dfa7df3aebf8ef3aca76322462b/Brewfile" -o "#{path}"` | |
`brew bundle #{path}` | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment