Should Capistrano be in the development team at the Gemfile?

Does Gemfile rails need to gem 'capistrano'be inside a group :development, or is there any advantage when placing it in an arbitrary type group :tools?

+5
source share
1 answer

Simply put, no, you don’t need to , but it’s good for best practices and keeping your gemset unpolluted. The best way to do this is open to discussion, but basically as long as Capistrano is available to you in the environment in which you work, it does not matter which groups it is or are not related, although I can see little benefit from using an arbitrary group :tools, since :developmentfirst of all, exclude it in production and "automatically-magically."

+6
source

All Articles