When executing the rails new ... command, eventually the task bundle install will be executed. For many of my projects I require the same gems and have to add them manually after creating the app and then run bundle install again manually.
Is there any way to modify the rails new command to write those gems inside the Gemfile while generating the app, so that when it executes bundle install all my gems are already in place? Ideally only triggered if I give an optional parameter?
Try to use application templates