Last active
February 6, 2016 19:26
-
-
Save simplesessions/a9cee5a60b24f109323b 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
| ### XCode | |
| echo "Installing XCode Tools" | |
| xcode-select --install | |
| ### Homebrew | |
| echo "Installing Homebrew" | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| ### Git | |
| brew install git | |
| ### rbenv | |
| echo "Installing rbenv" | |
| brew install rbenv | |
| echo 'eval "$(rbenv init -)"' >> ~/.bash_profile && source ~/.bash_profile | |
| rbenv install 2.3.0 | |
| rbenv rehash | |
| ### ImageMagick | |
| brew install imagemagick | |
| ### Node.js | |
| echo "Installing Node" | |
| brew install node | |
| echo "Installing bower" | |
| npm install -g bower | |
| echo "Installing Gulp" | |
| npm install -g gulp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment