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?
rvm gemset create rails-3.1.3; rvm gemset use rails-3.1.3? – carlosramireziii Mar 23 '12 at 13:16gem list rails? – Andrew Marshall Mar 23 '12 at 13:26gem env– mpapis Mar 23 '12 at 14:00rvm currentafter you have runrvm use 1.9.3@rails-3.1.3 --install --create? Is it showing the correct gemset selected? – Zabba Mar 23 '12 at 16:16use ruby-1.9.3-p125@rails-3.1.3and 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