I consistently run the ruby sudo gem install mygem
command with these two options on my production system:
sudo gem install mygem --no-ri --no-rdoc
I do that to save a little on space and on how long it takes to setup the documentation. Is there a way (other than hardcoding them into the bin/gem file) to say 'always run this command with these options'?
I figure someone might have a neat little one liner to insert this into the appropriate file with unix/linux somehow...