Ruby Quicktips: Prevent rdoc and ri installation when installing a gem
When installing a gem the process that often takes the longest is generating the ri and RDoc documentation.
If you want to prevent this from happening every time a gem gets installed (either manually or through Bundler), create (or open) a
.gemrcfile in~/.gemrcor/etc/gemrcand add the…