I have ruby 1.9.2 installed on my system (Ubuntu) using rvm, but one application needs rvm 1.8.7, How shall I install ruby 1.8.7 along with ruby 1.9.2 amd run on my system .
Please guide ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The purpose of rvm is running different versions of ruby on the same system. So just install ruby 1.8.7:
Then you can either set 1.8.7 as the default (
rvm --default use 1.8.7) or create a.rmvrcfile in the directory of your application: