3

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

Community
  • 1
  • 1
smoothdvd
  • 2,389
  • 4
  • 20
  • 25

3 Answers3

2
rvm @global do gem uninstall bundler
JellicleCat
  • 28,480
  • 24
  • 109
  • 162
1

Happened to me as well and solved it using:

rvm gem set use global

then

gem install bundler

cnikolaou
  • 3,782
  • 4
  • 25
  • 32
0

It seems like cleanup command is unable to find out the path, did you try to uninstall using gem uninstall command?

Following link might help you.

nkm
  • 5,844
  • 2
  • 24
  • 38
  • 2
    I resolve this problem with following link: http://stackoverflow.com/a/4060347/623260 "rvm gemset use global gem uninstall xxx" – smoothdvd Feb 20 '12 at 04:10