How to remove rvm wrapper?

I created some wrappers using rvm but I no longer use them, how to remove these wrappers correctly? I created my wrappers using:

rvmsudo rvm wrapper 1.9.3@mygemset mywrapper unicorn_rails
+3
source share
1 answer

There is no direct way to remove wrappers through RVM, but it should be as simple as:

rm -i $(which mywrapper_unicorn_rails)
+5
source

All Articles