Getting started with chruby

Home Blog

2012-12-13

If you’re looking for crazy simplicity in your ‘switch between multiple Rubies’ life, you may want to check out chruby. Written by Postmodern, it’s basically the simplest possible thing that can work. As in, 76 lines of shell script.

For that, you get:

Features

Anti-Features

Kinda crazy, eh?

Installing

Most of the time, I install things from homebrew, but I actually prefered to run the setup.sh script:

wget https://github.com/downloads/postmodern/chruby/chruby-0.2.3.tar.gz
tar -xzvf chruby-0.2.3.tar.gz
cd chruby-0.2.3/
./scripts/setup.sh

You can see the source for that script here. You’ll end up with an MRI, JRuby, and Rubinius all installed in /opt/rubies, and after restarting your shell, you should be good to go!

Usage

To see what Rubies you’ve got, just chruby:

$ chruby
   ruby-1.9.3-p327
   jruby-1.7.0
   rubinius-2.0.0-rc1

to pick one:

$ chruby 1.9.3

Pretty damn simple.

Getting more Rubies?

The setup script will install ruby-build, so just use that to get more rubies:

ruby-build 1.9.3-p327 /opt/rubies/ruby-1.9.3-p327

You’ll then need to update your list of Rubies in your .bashrc or .zshrc:

RUBIES=(
  # other rubies here
  /opt/rubies/ruby-1.9.3-p327
)

If you find this tedius, you can just glob them:

RUBIES=(/opt/rubies/*)

Automatic switching?

Not yet. This is pretty much the only thing keeping me from saying ‘zomg use this for sure now.’

How good is it?

I don’t know, I’ve been using it for less than 24 hours. Seems good.