When trying to uninstall a gem (gem uinstall <gem-name>
), I see:
ERROR: While executing gem ... (NameError)
uninitialized constant Gem::RDoc
How do I successfully uninstall a gem?
Based on info in this GitHub issue, I did:
gem install rdoc
After that, the error no longer appeared.