Forked from mmalawski/10.8 Rails Development Environment
Last active
July 27, 2016 01:07
-
-
Save matheusvetor/5425893 to your computer and use it in GitHub Desktop.
This file contains 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
# Mac OSX | |
# Ruby on Rails Development Environment | |
#After Install Xcode and Command Line Tools: | |
# Homebrew | |
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Basic packages | |
brew install macvim imagemagick mysql postgresql redis git ack mongodb node | |
# Oh my zsh | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" | |
# RVM | |
gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 | |
\curl -sSL https://get.rvm.io | bash -s stable | |
# Ruby | |
rvm install ruby-2.3.1 | |
rvm use ruby-2.3.1 --default |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment