Created
February 28, 2013 00:01
-
-
Save strangnet/5053050 to your computer and use it in GitHub Desktop.
ruby 2 rails 4 install with homebrew
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
brew install openssl | |
brew install ruby-build | |
brew install rbenv | |
export CONFIGURE_OPTS="--with-openssl-dir=`brew --prefix openssl`" | |
rbenv install 2.0.0-p0 | |
rbenv rehash | |
rbenv global 2.0.0-p0 | |
gem install bundler | |
gem install rails -v 4.0.0.beta1 --no-ri --no-rdoc | |
rbenv rehash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment