I didn't work with RoR for 2-3 years, but now I'm back in business, and I really like the bundle
command. But I'm a bit unsure how to make sure my fellow developers have all gems installed that are not strictly part of the Rails application.
For example, we use YARD for documentation. YARD doesn't have anything to do with the Rails project we are working on, so I'm not sure whether I should add it to its Gemfile. On the other hand, this is the only way to make sure every developer has it installed automatically.
And if I add it to Gemfile, how exactly should I do it? In the :development
group, so it doesn't get loaded for production? But strictly speaking, it also shouldn't be loaded in development, it simply just be installed so it can be used manually.
So how should I add it? Thanks, guys, for help.