You can also install use rbenv to install and manage different versions of Ruby.
Note: I don't have anything against rvm. I simply noticed that installing various Rubies is a constant source of questions, both in Stack Overflow and also at work!
Requirements
- Here I'm assuming that you have Homebrew. (If you haven't installed that yet, make sure your permissions are correct on
/usr/local/ after installation is complete, or you can run into mysterious-looking errors that should not be preventing you from installing Ruby.)
- Run
rvm implode before installing rbenv. This will destroy rvm.
To install rbenv using Homebrew
Update Homebrew.
$ brew update
Install rbenv.
$ brew install rbenv
Install ruby-build.
$ brew install ruby-build
Follow the instructions listed after installing these formulae in order to make it available correctly in your shell.
To install Ruby 1.9.3
See what versions of Ruby you can install.
$ rbenv install
Install one. The lastest as of this post is 1.9.3-p194.
$ rbenv install 1.9.3-p194
To use Ruby 1.9.3
$ rbenv global 1.9.3-p194
To rehash rbenv
Sometimes you need to run rbenv rehash, like when you install a gem that has native extensions for your operating system.
$ rbenv rehash
There are lots of other things you can do with rbenv, like use a particular Ruby in a particular directory, or a particular ruby in the shell. See the appropriate docs for more info!