RVM doesn't use the default Ruby version on both my Mac and Ubuntu server.
This is what I get when I do rvm list
on my Mac:
rvm rubies
* ruby-2.1.2 [ x86_64 ]
# => - current
# =* - current && default
# * - default
And what I get on Ubuntu:
rvm rubies
* ruby-2.1.2 [ i686 ]
# => - current
# =* - current && default
# * - default
They are already the default and only version available, but I have to manually type rvm use 2.1.2
each time when I need to do some Ruby stuff. I guess I could put that command into .profile
or the like, but it feels hackish since I'm expecting RVM to use the default version.
Does anyone have a better solution?