[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

win32ole in compiled ruby

matthewdmaxwell

3/31/2006 3:37:00 AM

I am having a problem with getting the win32ole extension to work for
my ruby-1.8.4, which I compiled from source. After I had compiled it I
found out you need to comment out the ext from ext/Setup. I did that
and recompiled but using irb I still get an error

[root@preservedasset doc]# irb
irb(main):001:0> require 'win32ole'
LoadError: no such file to load -- win32ole
from (irb):1:in `require'
from (irb):1
irb(main):002:0>

Anyone know what I am doing wrong?

Thanks,

Matt Maxwell

4 Answers

Alexandru E. Ungur

3/31/2006 7:41:00 AM

0

>>> sender: "matthewdmaxwell@gmail.com" date: "Fri, Mar 31, 2006 at 12:38:43PM +0900" <<<EOQ
> I am having a problem with getting the win32ole extension to work for
> my ruby-1.8.4, which I compiled from source. After I had compiled it I
> found out you need to comment out the ext from ext/Setup. I did that
> and recompiled but using irb I still get an error
>
> [root@preservedasset doc]# irb
> irb(main):001:0> require 'win32ole'
> LoadError: no such file to load -- win32ole
> from (irb):1:in `require'
> from (irb):1
> irb(main):002:0>
>
> Anyone know what I am doing wrong?
Yes. You're asuming that the whole world uses Windows :) and therefore
expect win32ole to be part of Ruby core. Thank God that's not the
case... :)

http://raa.ruby-lang.org/project...


Have a nice day everyone,
Alex


Alexandru E. Ungur

3/31/2006 7:45:00 AM

0

>>> sender: "Alexandru E. Ungur" date: "Fri, Mar 31, 2006 at 04:41:20PM +0900" <<<EOQ
> >>> sender: "matthewdmaxwell@gmail.com" date: "Fri, Mar 31, 2006 at 12:38:43PM +0900" <<<EOQ
> > I am having a problem with getting the win32ole extension to work for
> > my ruby-1.8.4, which I compiled from source. After I had compiled it I
> > found out you need to comment out the ext from ext/Setup. I did that
> > and recompiled but using irb I still get an error
> >
> > [root@preservedasset doc]# irb
> > irb(main):001:0> require 'win32ole'
> > LoadError: no such file to load -- win32ole
> > from (irb):1:in `require'
> > from (irb):1
> > irb(main):002:0>
> >
> > Anyone know what I am doing wrong?
> Yes. You're asuming that the whole world uses Windows :) and therefore
> expect win32ole to be part of Ruby core. Thank God that's not the
> case... :)
>
> http://raa.ruby-lang.org/project...

Mea culpa, looks like it is part of stdlib:
http://www.ruby-doc.o...

but them, why is it listed both on RAA and stdlib?
Isn't RAA listing 'extra' applications/libraries that are not part of
core+stdlib ? It also lists stdlib libraries as well?

Alex


Masaki Suketa

3/31/2006 1:32:00 PM

0

Hello,

In message "Re: win32ole in compiled ruby"
on 06/03/31, "Alexandru E. Ungur" <alexandru@globalterrasoft.ro> writes:

> Mea culpa, looks like it is part of stdlib:
> http://www.ruby-doc.o...
>
> but them, why is it listed both on RAA and stdlib?
> Isn't RAA listing 'extra' applications/libraries that are not part of
> core+stdlib ? It also lists stdlib libraries as well?

When Ruby version was 1.6.8, the Win32OLE was not stdlib library.
The Win32OLE of RAA is for Ruby 1.6.8

And the Win32OLE became stdlib when the Ruby version was 1.8.0.
And now the Win32OLE is one of the stdlib libraries.

Regards,
Masaki Suketa



Alexandru E. Ungur

3/31/2006 11:07:00 PM

0

>>> sender: "Masaki Suketa" date: "Fri, Mar 31, 2006 at 10:32:25PM +0900" <<<EOQ
> Hello,
Hi,

> In message "Re: win32ole in compiled ruby"
> on 06/03/31, "Alexandru E. Ungur" <alexandru@globalterrasoft.ro> writes:
>
> > Mea culpa, looks like it is part of stdlib:
> > http://www.ruby-doc.o...
> >
> > but them, why is it listed both on RAA and stdlib?
> > Isn't RAA listing 'extra' applications/libraries that are not part of
> > core+stdlib ? It also lists stdlib libraries as well?
>
> When Ruby version was 1.6.8, the Win32OLE was not stdlib library.
> The Win32OLE of RAA is for Ruby 1.6.8
>
> And the Win32OLE became stdlib when the Ruby version was 1.8.0.
> And now the Win32OLE is one of the stdlib libraries.
Thank you very much for the explanation.
It makes a lot more sense now.

Thanks,
Alex