Hello ruby community,
By default when I run
rake gems:install
rake install missing gems altogether with rdoc documentation. Manually I can install gems without rdoc documentation like this:
gem install factory_girl --no-rdoc --no-ri
How can I configure (rake? rails?or maybe gem pkg manager?) to install missing gems with two above options ?
Thank you!