-
-
Save Quilted/6066806 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/usr/bin/env sh | |
brew update | |
brew install rbenv | |
brew install ruby-build | |
brew install openssl | |
RUBY_CONFIGURE_OPTS=--with-openssl-dir=`brew --prefix openssl` | |
rbenv install 2.0.0-preview1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When calling
rbenv install 2.0.0-preview1
, the version number can be any release of Ruby. If you addeval "$(rbenv init -)"
to your profile you can tab completerbenv install
to get a list of possible versions.