Renaming the rails 5 app is even easier!
Open the config/application.rb
file in your rails project, there you will see a module with the same name as your application. All you have to do is change the module name to your preferred application name.
In addition, there are some other links to the old name of the application, but their change is not required. Take a look, for example, at config/initializers/session_store.rb
, where the session cookie name still uses the old application name. But the old Find All feature in your IDE / editor can probably help you with these links.
source share