I'm using RVM but I'm having some problems. How can I start using another gemset开发者_JS百科, and which one?
Thanks
You could do something like this:
rvm gemset create rails3 rvm gemset use rails3
This would create a gemset called rails3 and then use it. Check out the documentation here for more information.
You can switch to a specific gemset with
rvm @gemname
And see which gemsets are in your "box" with
rvm gemset list
精彩评论