Skip to content

Instantly share code, notes, and snippets.

@jwelshiv
Created January 28, 2014 11:33
Show Gist options
  • Save jwelshiv/8666141 to your computer and use it in GitHub Desktop.
Save jwelshiv/8666141 to your computer and use it in GitHub Desktop.
Mavericks Setup
Install Xcode
xcode-select --install
# Homebrew
# http://brew.sh/
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
# Fix any issues found
brew doctor
# Git
brew install git
git config --global user.name 'Your Name'
git config --global user.email email@example.com
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
# Ruby dependencies
brew tap homebrew/versions
brew install curl
brew install gcc49
brew install autoconf automake libtool libyaml readline libksba openssl
# RVM / Ruby
# http://rvm.io/
\curl -L https://get.rvm.io | bash -s stable
rvm requirements
rvm install 2.0.0-p353 --patch railsexpress
rvm install 1.9.3-p484 --patch railsexpress
# Set default ruby
rvm use 2.0.0-p353 --default
# Faster gem install w/o documentation generation
echo 'gem: --no-document' > ~/.gemrc
# zsh
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
# MySQL
# (Source) http://dev.mysql.com/downloads/mysql/
brew install mysql
# Postgresql
brew install postgresql
# or download http://postgresapp.com/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment