RVM: Uninstalling all gems of a gemset

2019-01-16 00:57发布

I have global gems and various gemsets. I want to remove all gems of a gemset. Is there a way do to this, besides uninstalling the gemset?

标签: ruby rvm
7条回答
啃猪蹄的小仙女
2楼-- · 2019-01-16 01:54

Isn't removing all the gems out of a gemset essentially the same operation as deleting a gemset and then adding it back? Why not just do this:

$ rvm gemset mygemset
$ rvm gemset delete mygemset
$ rvm gemset create mygemset
查看更多
登录 后发表回答