How to rename rails 4 app?

后端 未结 9 1707
醉酒成梦
醉酒成梦 2020-12-02 05:52

rails plugin install git://github.com/get/Rename.git will allow us to rename only rails 3 app

Is there any gem available to rename Rails 4 app.

9条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-02 06:00

    I just used this rename gem in a basic rails 4 app:

    https://github.com/morshedalam/rename

    This is quite a bit different to get's version.


    Easy enough to use:

    Add this to Gemfile:

    gem 'rename'
    

    And run:

    rails g rename:app_to NewName
    

    Seemed to the trick,
    It also updated my rubymine .idea project settings :)

提交回复
热议问题