A gem I'm authoring doesn't have any inline ri/rdoc of any kind, so when users gem install
it they get warnings when rubygems tries to compile the docs:
Successfully installed mygem-0.0.1
1 gem installed
Installing ri documentation for mygem-0.0.1...
File not found: lib
I'm assuming this is due to it trying to run the ri tool against my app's lib folder which doesn't exist (gem is all binaries). How can I avoid this error? I tried placing dummy files in lib/
but that didn't help.