Skip to content

Instantly share code, notes, and snippets.

@Arr0way
Last active August 29, 2015 13:57
Show Gist options
  • Save Arr0way/9709041 to your computer and use it in GitHub Desktop.
Save Arr0way/9709041 to your computer and use it in GitHub Desktop.
OSX Mavericks install Git, Rails, RVM & MySQL - One Liner
brew install automake && brew install git && brew install mysql && \curl -L https://get.rvm.io|bash -s stable --ruby && source ~/.rvm/scripts/rvm && gem install rails && mkdir -p ~/Library/LaunchAgents && ln -s /usr/local/opt/mysql/homebrew.mxcl.mysql.plist ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist && launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment