[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Problem with "gem cleanup" on OS X 10.5

Kenneth McDonald

11/7/2008 9:27:00 PM

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

6 Answers

Dru

11/11/2008 2:42:00 PM

0

On Nov 7, 9:27 pm, Kenneth McDonald <kenneth.m.mcdon...@sbcglobal.net>
wrote:
> 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.

cdubd

12/7/2008 7:26:00 PM

0

On Nov 11, 3:41 pm, Dru <dru.re...@gmail.com> wrote:
> On Nov 7, 9:27 pm, Kenneth McDonald <kenneth.m.mcdon...@sbcglobal.net>
> wrote:
>
> > 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.

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

Ryan Davis

12/9/2008 8:20:00 PM

0


On Dec 7, 2008, at 11:23 , cdubd wrote:

> On Nov 11, 3:41 pm, Dru <dru.re...@gmail.com> wrote:
>> On Nov 7, 9:27 pm, Kenneth McDonald
>> <kenneth.m.mcdon...@sbcglobal.net>
>> wrote:
>>
>>> 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.
>
> 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)


Patrick Bennett

12/9/2008 8:27:00 PM

0


On Dec 9, 2008, at 3:19 PM, Ryan Davis wrote:

> 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



Ryan Davis

12/9/2008 11:20:00 PM

0


On Dec 9, 2008, at 12:27 , Patrick Bennett wrote:

>
> On Dec 9, 2008, at 3:19 PM, Ryan Davis wrote:
>
>> 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.

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).


cnjohnson

12/31/2008 9:31:00 PM

0



Ken McDonald wrote:
>
> 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.o...
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
--
View this message in context: http://www.nabble.com/Problem-with-%22gem-cleanup%22-on-OS-X-10.5-tp20389268p212...
Sent from the ruby-talk mailing list archive at Nabble.com.