I'm having a problem where when I open up Terminal in Mac OS X, and type ruby -v, I get:
➜ ~ ruby -v
ruby 1.8.7 (2012-02-08 patchlevel 358) [universal-darwin12.0]
I used RVM to install a more recent version of Ruby, and when I ask it to list installed versions of Ruby, I get:
➜ ~ rvm list
rvm rubies
=* ruby-1.9.3-p286 [ x86_64 ]
# => - current
# =* - current && default
# * - default
So, I simply type this to use ruby-1.9.3-p286:
➜ ~ rvm use ruby-1.9.3-p286
Using /Users/patrickestabrook/.rvm/gems/ruby-1.9.3-p286
➜ ~ ruby -v
ruby 1.9.3p286 (2012-10-12 revision 37165) [x86_64-darwin12.2.0]
The problem is that whenever I log out and open up terminal again, it sets my Ruby version back to ruby 1.8.7. How can I get it to just stay at ruby-1.9.3-p286?