How to use a different version of ruby, but with the same gemset?

On my computer, I run ruby1.9.2-p290using systemgemset. I want to continue testing the edge version of Ruby in my development, but I do not want to install all the gems again and store basically identical copies of the same gems.

How can I switch to ruby1.9.3-p325using the same systemgemset with rvm?

+5
source share
1 answer

you can use:

rvm gemset copy 1.9.2-p290@system 1.9.3@system
0
source

All Articles