Recommend
If you like my work with RVM, please recommend me *with a comment as to why you recommend me* on
Working With Rails – Thank You!
IRC
I am 'wayneeseguin' in #rvm on irc.freenode.net
If I do not respond right away, leave a message and I'll respond or leave you a memo when I am around.
Sponsors
$ rvm help # Documentation Index

Importing a gemset

To import a gemset file called 'albinochipmunk.gems' to the albinochipmunk gemset of 1.9.2-head do

$ rvm --create 1.9.2-head@albinochipmunk # The --create creates the gemset if it does not exist
$ rvm gemset import albinochipmunk

Note that you can use any gemset name to import into.

You can specify the gemset filename prefix also

$ rvm gemset use albinochipmunk
$ rvm gemset import albinochipmunk

Alternatively, if you already have a ruby and/or gemset selected:

$ rvm 1.9.2-head@albinochipmunk
$ rvm gemset import

Importing without arguments will check for gemset files in the following order:

gemset files have the following format, particularly for denoting versions:

fastercsv
rails -v2.3.2
rake
tzinfo -v0.3.27

You might also be interested in Copying gemsets from one rvm ruby[@gemset] to another.

RVM Documentation Index