Based on @ Jimmy-Huang's answer, these are the steps I followed on a Mac Leopard using rvm and ruby 1.9.2:
rvm package install readline rvm remove 1.9.2 rvm install 1.9.2 --with-readline-dir=$rvm_path/usr
This led to some errors, especially when trying to bundle install :
uninitialized constant Gem :: SilentUI
It turned out that due to an older version of bundler and this gets rid of it:
gem install bundler
Sjors provoost
source share