Is there an RVM command to simply rename a gemset? I couldn't find it on the RVM site.

link|improve this question
feedback

3 Answers

up vote 24 down vote accepted

There is an RVM gemset rename command. I'm not sure when it was introduced but it is present in 1.0.16.

rvm gemset rename current_gemset_name new_gemset_name

Note that this won't automatically switch you to the newly renamed gemset, even if you were using it before. So you'll need to

rvm gemset use new_gemset_name
link|improve this answer
1  
This gives me ERROR: 'current_gemset_name' does not exist. rvm 1.8.6 – jibiel Nov 9 '11 at 7:51
on my mac, it also gives me ERROR: 'current_gemset_name' does not exist – larryzhao Jan 20 at 9:01
This should not be fixed in the latest version. To update rvm type: rvm get latest – Flaviu Feb 2 at 11:15
feedback

I copied one with

rvm gemset copy <gemset_from> <gemset_dest>

and then deleted the previous one with

rvm gemset delete <gemset_from> 
link|improve this answer
Hmmm ... I did that and the gems didn't show up in the new gemset. The command line feedback I did this: rvm gemset copy demo2 rails_admin Then it said: Copying gemset from demo2 to rails_admin (and) Making gemset for rails_admin pristine. I'm not sure what that last sentence is about. I have rvm version 1.9.2. – Purplejacket Dec 15 '11 at 19:40
feedback

It's a RVM bug!

Solved in this pull request: https://github.com/wayneeseguin/rvm/issues/592#issuecomment-2705466 Commit: https://github.com/jwhitley/rvm/commit/619e5265927cf6c842ec3561345569af474ed20e

link|improve this answer
1  
Cool ... I had been on rvm 1.9.3, then I did rvm get head (see for example beginrescueend.com/rvm/upgrading ), and now the rename command works properly. – Purplejacket Dec 15 '11 at 19:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.