Created
November 6, 2013 06:53
-
-
Save benweint/7332021 to your computer and use it in GitHub Desktop.
My Ruby setup
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
# Install ruby-build | |
git clone [email protected]:sstephenson/ruby-build.git ~/.ruby-build | |
cd ~/.ruby-build | |
./install.sh | |
# List definitions | |
ruby-build --definitions | |
# Install some Rubies | |
ruby-build jruby-1.7.6 ~/.rubies/jruby-1.7.6 | |
ruby-build 2.0.0-p247 ~/.rubies/2.0.0-p247 | |
ruby-build rbx-2.1.1 ~/.rubies/rbx-2.1.1 | |
# Install chruby | |
# See instructions at https://github.com/postmodern/chruby | |
# To update ruby-build later: | |
cd ~/.ruby-build | |
git pull | |
./install.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment