Is the rename gem the best way to rename my rails 5 app?
rename
Also, is there any notes I have to keep in mind when renaming my app?
A 'find and replace' approach is risky because it could break urls or routes.
Instead, add gem 'rename' to your gemfile, and run bundle install
gem 'rename'
bundle install
Then simply:
rails g rename:into your_new_app_name