I'm trying to install the paperclip gem but i'm being prompted that it requires Ruby version >=1.9.2
When I check my version on RVM , I get 1.9.3, Whereas when I check it via the ruby -v command, I get 1.8.7 How do I get my rails application to use the latest version of RUby instead?
@ubuntu:~$ rvm list
rvm rubies
=* ruby-1.9.3-p194 [ x86_64 ]
# => - current
# =* - current && default
# * - default
@ubuntu:~$ ruby -v
ruby 1.8.7 (2011-06-30 patchlevel 352) [x86_64-linux]
Any help is appreciated!