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 have rails 3.2.2 installed in the global gemset in ruby 1.9.3-p125 installation, and I need to test varils rails versions. When I create a new gemset, and install a different rails version, I get the same rails installed!

Here's what I do:

$ rvm use 1.9.3@rails-3.1.3 --install --create
$ gem install rails --version 3.1.3 --no-ri --no-rdoc
$ which rails
> ~/.rvm/gems/ruby-1.9.3-p125@rails-3.1.3/bin/rails
$ rails --version
> 3.2.2

And the result of:

$ rvm ruby-1.9.3-p125@rails-3.1.3 gem list

Shows the same list of global gemset.

I echoed GEM_PATH and GEM_HOME and they both show the correct rails-3.1.3 path

I'm running the following:

  • Mac OS X 10.7.3 Lion
  • RVM 1.10.3

What's going wrong here? And how can I solve this issue?

share|improve this question
Do you get the same behavior if you create your gemsets with the gemset command instead? rvm gemset create rails-3.1.3; rvm gemset use rails-3.1.3? – carlosramireziii Mar 23 '12 at 13:16
What is the exact output of gem list rails? – Andrew Marshall Mar 23 '12 at 13:26
also include gem env – mpapis Mar 23 '12 at 14:00
What is output of rvm current after you have run rvm use 1.9.3@rails-3.1.3 --install --create ? Is it showing the correct gemset selected? – Zabba Mar 23 '12 at 16:16
Try fully qualifying the ruby version with use ruby-1.9.3-p125@rails-3.1.3 and try un installing and reinstalling the rails gem (You could have multiple versions installed in the same gemset). Also, its probably not a good idea to have any gems in your global gemset because if a rails app depends on a gem in the global gemset that isn't listed in the Gemfile, you can run into issues when deploying. – JD Isaacks Mar 24 '12 at 2:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.