I have installed Ruby 1.9.3-p327 and I can use it and my .rvmrc file contains the following:
rvm use ruby-1.9.3
But when I go to the project directory, an error occurs:
ruby-1.9.3-p362 is not installed.
To install do: ‘rvm install ruby-1.9.3-p362’`
Why it happens? I do not want to use p362, i need p327 and I have installed it!
Maybe it’s because I had installed p362 before and deleted it wrong somehow? I used rvm remove 1.9.3-p362. Thanks in advance!
The current RVM considers
Ruby 1.9.3andRuby 1.9.3-p362equivalent. Future revisions of RVM will assume another value. It assumes you mean the most recent/highest number revision known to it for potential installation, which isn’t based on what is installed. You can test this byrvm install 1.9.3which will install1.9.3-p362currently.Instead try using
Ruby 1.9.3-p327in your.rvmrcfile.