Skip to content

Instantly share code, notes, and snippets.

@simplesessions
Last active February 6, 2016 19:26
Show Gist options
  • Select an option

  • Save simplesessions/a9cee5a60b24f109323b to your computer and use it in GitHub Desktop.

Select an option

Save simplesessions/a9cee5a60b24f109323b to your computer and use it in GitHub Desktop.
### 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