Uninstall Rails 3 with dependencies?

后端 未结 4 1594
庸人自扰
庸人自扰 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:14

    Look at deps(optional):

    gem dependency rails -v=3.0.9
    

    Then uninstall all components of the version specified:

    gem uninstall actionmailer actionpack activerecord activesupport acriveresource rails -v=3.0.9
    

提交回复
热议问题