Search code examples
ruby-on-railsrubyrubygemsbundler

Using --no-rdoc and --no-ri with bundler


When using gem install gem_name I can pass --no-rdoc and --no-ri switches to skip generating RDoc/RI documentation for the gem on install.

Is there a similar way to do this with bundle install?


Solution

  • Make a file ~/.gemrc and put this in it:

    gem: --no-rdoc --no-ri

    That should make it apply whenever you run the gem command. (Even from bundle install)