Reputation: 46795
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?
Upvotes: 8
Views: 5522
Reputation: 46795
Based on info in this GitHub issue, I did:
gem install rdoc
After that, the error no longer appeared.
Upvotes: 17