Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to upgrade from ruby 1.8.7 to ruby 1.9.3; I'm trying to install refinery cms and it uses truncate_html gem, which depends on ruby (>= 1.9). I've installed ruby 1.9.3-p374 without removing ruby 1.8.7.

I've used the command rvm --default use 1.9.3 and it issued the result

Using /usr/share/ruby-rvm/gems/ruby-1.9.3-p374 

but when i type ruby -v it was again 1.8.7.

How can I upgrade to ruby 1.9.3?

share|improve this question
possible duplicate of stackoverflow.com/questions/7696633/… – Saurabh Jain Jan 18 at 14:19

3 Answers

up vote 0 down vote accepted

You are using RVM Ubuntu package which is broken, use this instructions to update http://stackoverflow.com/a/9056395/497756

share|improve this answer
Solved my problem. Thanks – shail85 Jan 19 at 5:07

Are you using a .rvmrc file for your project? If so, it might be selecting a specific Ruby over your default.

Open ./.rvmrc if it exists and remove (as necessary) any rvm use... references.

share|improve this answer

Try

ruby1.9.1 <filename.rb>

share|improve this answer
or ruby1.9.3 <filename.rb> – arpanchaudhury Jan 18 at 16:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.