Uninstall Rails completely

后端 未结 9 1484
轮回少年
轮回少年 2020-12-07 20:51

I’m trying to uninstall Rails completely, but I can’t get the grip of it.

Here’s what I tried:

$ gem update
rails 4.0.0.beta1 instal         


        
9条回答
  •  轮回少年
    2020-12-07 21:19

    If you are using rvm, you can uninstall all gems by deleting .gem directory in you $HOME

    rm -rf ~/.gem

    or uninstall only rails:

    gem uninstall -a rails

    or if you installed using sudo:

    sudo gem uninstall -a rails

提交回复
热议问题