echo 'gem: --no-rdoc --no-ri' >> ~/.gemrcbrew install rbenv ruby-build
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
rbenv install 2.0.0-p247
rbenv rehash
rbenv global 2.0.0-p247
If you weren't paying attention because you don't need rbenv, come back now!
Put a file at the root of ALL your projects called ".ruby-version"
rbenv local 2.0.0-p247
{sudo} gem install bundler
The latter is made after running bundle install
mkdir ~/.bundleecho 'BUNDLE_PATH: vendor/bundle' >> ~/.bundle/configbundle installsudo bundle installbundle exec {{command}}bundle exec compass compile