Problem with "gem cleanup" on OS X 10.5

  • Thread starter Kenneth McDonald
  • Start date
K

Kenneth McDonald

When I try to execute 'sudo gem cleanup' on OS X 10.5, I get the
message:

Attempting to uninstall rails-1.2.6
ERROR: While executing gem . . . (Gem:InstallError)
Unknown gem rails = 1.2.6

How can I fix this so gem cleanup will continue to completion?

Thanks,
Ken
 
D

Dru

When I try to execute 'sudo gem cleanup' on OS X 10.5, I get the  
message:

Attempting to uninstall rails-1.2.6
ERROR: While executing gem . . . (Gem:InstallError)
     Unknown gem rails = 1.2.6

How can I fix this so gem cleanup will continue to completion?

Thanks,
Ken

I've been having this problem as well and I thought I was the only
one! I get exactly the same error on my iMac running osx 10.5.5, I've
also got xcode 3.1.1 installed in case it matters, although I should
mention that I'm getting this problem after a clean install of my
system too.

Any help is much appreciated!

Thanks.
 
C

cdubd

I've been having this problem as well and I thought I was the only
one! I get exactly the same error on my iMac running osx 10.5.5, I've
also got xcode 3.1.1 installed in case it matters, although I should
mention that I'm getting this problem after a clean install of my
system too.

Any help is much appreciated!

Thanks.

I am also having exactly the same problem. No solution yet.
 
R

Ryan Davis

I am also having exactly the same problem. No solution yet.

the solution is to ignore it. those gems are installed by apple as
"system" gems. They stay when you run cleanup. the real error is how
ugly and uninformative it is about it, but apple didn't provide those
patches :)

we'll get to it sooner or later. (guess which one)
 
P

Patrick Bennett

the solution is to ignore it. those gems are installed by apple as
"system" gems. They stay when you run cleanup. the real error is how
ugly and uninformative it is about it, but apple didn't provide
those patches :)

we'll get to it sooner or later. (guess which one)

That doesn't work though. You can't ignore it - gem cleanup aborts as
soon as it happens, leaving all the other gems left as-is.

Patrick
 
R

Ryan Davis

That doesn't work though. You can't ignore it - gem cleanup aborts
as soon as it happens, leaving all the other gems left as-is.

ah crap.
% sudo gem cleanup
Password:
Cleaning up installed gems...
Attempting to uninstall rubyforge-1.0.0
Successfully uninstalled rubyforge-1.0.0
Attempting to uninstall nokogiri-1.0.5
Successfully uninstalled nokogiri-1.0.5
Attempting to uninstall sqlite3-ruby-1.2.1
ERROR: While executing gem ... (Gem::InstallError)
Unknown gem sqlite3-ruby = 1.2.1

yeah. I think that is new(ish).
 
C

cnjohnson

Ken said:
When I try to execute 'sudo gem cleanup' on OS X 10.5, I get the
message:

Attempting to uninstall rails-1.2.6
ERROR: While executing gem . . . (Gem:InstallError)
Unknown gem rails = 1.2.6

How can I fix this so gem cleanup will continue to completion?

You can search for the offending gem with

%gem list -d sqlite3

On OS X you will get back something akin to

*** LOCAL GEMS ***

sqlite3-ruby (1.2.4, 1.2.1)
Author: Jamis Buck
Homepage: http://sqlite-ruby.rubyforge.org/sqlite3
Installed at (1.2.4): /Library/Ruby/Gems/1.8
(1.2.1):
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8

SQLite3/Ruby is a module to allow Ruby scripts to interface with a
SQLite3 database.

You may now uninstall the offending gem with

%gem uninstall --install-dir
System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8
sqlite3

So, in general

gem list -d <gem-name>

will get you the location of the gem, and

gem uninstall --install-dir </install/directory> <gem-name>

will uninstall the gem.

HTH

Charles
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top