I’m using RVM to manage my Ruby environment on OSX, and currently it’s interpreting ‘1.9.2’ as ruby-1.9.2-rc2 instead of the final release. How can I update this to make it behave as expected?
I’m using RVM to manage my Ruby environment on OSX, and currently it’s interpreting
Share
Make sure you’ve updated rvm with the
rvm updatecommand. From there you can install 1.9.2 withrvm install 1.9.2. It’ll install and compile ruby 1.9.2-p0. From there, it should interpret1.9.2as the final release. I’m also on a mac, and this worked for me after having rc2 installed.