Read more

How to fix: RVM does not offer recent Ruby versions

Arne Hartherz
February 15, 2013Software engineer at makandra GmbH

RVM needs to be updated regularly to know of Ruby versions released since installation (or last update).

Illustration book lover

Growing Rails Applications in Practice

Check out our e-book. Learn to structure large Ruby on Rails codebases with the tools you already know and love.

  • Introduce design conventions for controllers and user-facing models
  • Create a system for growth
  • Build applications to last
Read more Show archive.org snapshot

So if you say rvm install 1.9.3, but get an old version (basically anything below 1.9.3-p385 when writing this card), your RVM is outdated. \
Fix that by saying:

rvm get stable

After that, rvm install 1.9.3 should install the latest 1.9.3 version.

Posted by Arne Hartherz to makandra dev (2013-02-15 11:47)