I installed RoR on my Mac using sudo gem install rails
. That command will download the docs. Which switch can I use to not download any docs during installation?
Also, is there a way to remove all the docs after installation?
I installed RoR on my Mac using sudo gem install rails
. That command will download the docs. Which switch can I use to not download any docs during installation?
Also, is there a way to remove all the docs after installation?
You could add this in your terminal:
echo "gem: --no-document" >> ~/.gemrc
you can get more information Faster Gem Installation
You should use --no-document
.
To to make it default check How to make --no-ri --no-rdoc the default for gem install?