Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question

1 Answer

up vote 3 down vote accepted

As a basic step you can set the default ruby rvm is to use as follows.

$ rvm use 1.9.3 --default

You can also set it at the project level by adding an .rvmrc file with the following contents to your project root directory. You should commit this to the repo.

rvm 1.9.3

As a final measure, you should stop using rvm and switch to rbenv. It's much better, and we need to stop overriding cd.

share|improve this answer
Awesome! Thanks Blake! That did it – ringular Aug 17 '12 at 6:03
the real problem might be in not using ruby, are you by chance overwriting PATH in any of *rc files? – mpapis Aug 18 '12 at 4:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.