Reputation: 2448
gem cleanup report error:
Attempting to uninstall bundler-1.0.21
Unable to uninstall bundler-1.0.21:
Gem::InstallError: gem "bundler" is not installed
But I already cleanuped bundler 1.0.21 and upgrade to bundler 1.0.22.
I use rvm 1.10.2, ruby 1.9.3-p0, under Mac OS X 10.7.3.
Update:
I resolve this problem with the answer link
rvm gemset use global
gem uninstall xxx
Upvotes: 3
Views: 1931
Reputation: 3992
Happened to me as well and solved it using:
rvm gem set use global
then
gem install bundler
Upvotes: 1