Seems like preinstalled version of ruby is not under RVM management
That is correct. It was preinstalled by Apple, and RVM will not manage it. To revert to using it you can do rvm system or rvm use system, and RVM will step out of the way. You can switch back using rvm default if you defined a default, or rvm 1.9.2 or rvm 1.8.7 if you installed one of those versions using RVM.
And, as a caution, Apple installed 1.8.7 to be used by some of their pre-installed apps. Do not mess with that installation or those apps could stop working, which you probably won't notice until farther down the road when you've forgotten you messed around, and can't figure out why they're broken.
As for why you still see 1.8.7 as your default:
- Did you add
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" to your ~/.bashrc OR ~/.bash_profile? See the Post Install section on RVM's installation page and follow the instructions.
- Did you do
rvm use 1.9.2 --default to define a default Ruby to use?
PATHthan the rvm version. Is the line that sources rvm the last thing in your bash_profile or bashrc? – matt Feb 13 '11 at 21:56export PATH=~/.rvm/bin/:$PATHline and add[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"to the end of bash_profile. – matt Feb 13 '11 at 22:17