Jerome
Jerome

Reputation: 6189

Known RVM versions not very recent?

Presently on OS X 10.6.8 if I run

rvm get head
rvm reload
rvm get stable

The highest Ruby is [ruby-]1.9.3-head.

Running rvm get stable does not change this. If I want to install Ruby 2.2 RVM says Version '2.2.2' is to confusing to select ruby interpreter.

Do I have to download the latest (2.2.3) manually and install? Will this not gum up RVM?

Upvotes: 0

Views: 81

Answers (1)

the Tin Man
the Tin Man

Reputation: 160553

You don't say what version of RVM you're running but RVM is plenty capable of handling the problem. From the documentation:

Is rvm get stable not working? Is rvm get latest telling you You already have the latest version! , but you know you don't? Try this:

    $ rvm get head
    $ rvm reload
    $ rvm get stable

If that does not work for you, you can always use the installer to update:

    $ \curl -sSL https://get.rvm.io | bash -s stable
    $ rvm reload

Reloading RVM itself won't affect any previously installed Rubies or gems; In other words it's safe.

Upvotes: 1

Related Questions