Uninstall Rails 3 with dependencies?

后端 未结 4 1596
庸人自扰
庸人自扰 2021-02-08 11:34

I like that Rails 3 is so easy to install: gem install rails --pre, and all of the dependencies are automatically installed for you. But, what about uninstalling it

4条回答
  •  醉酒成梦
    2021-02-08 12:17

    Check your currently installed version(s):

    gem list -d rails
    

    Then uninstall the version(s) you don't want:

    sudo gem uninstall rails -v 3.0.0.beta3
    sudo gem uninstall actionmailer -v 3.0.0.beta3
    

    etc.

    I'm still trying to figure out how to completely remove rails 3.0.0.beta3 and all its deps.

提交回复
热议问题