[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

can't find io/wait on windows

Tim Garwood

4/3/2006 1:59:00 PM

Hello,

This is my first post. I read a post from a little while ago about
having trouble getting io/wait to work on Windows. I downloaded the
win32utils library off of rubyforge and installed it to the default path
of:

c:\ruby\lib\ruby\site_ruby\1.8\i386-msvcrt\win32

The code that I have that is using io/wait is:

---------------------------------------------
require 'io/wait'
require 'rubygems'
require 'stomp'

c = Stomp::Client.new "blahuser", "blahpass", "localhost", 61626
c.subscribe("/queue/blah") { |m| puts m.body }
c.send("/queue/blah", "Hello, World")
---------------------------------------------

Do I need to change the require 'io/wait' line to something different
now that I have win32utils installed? Or do I need to reinstall to a
different directory or something? I can't seem to find information on
this anywhere except for the 1 post from before.

Thank you,
-Tim

--
Posted via http://www.ruby-....


4 Answers

Tim Garwood

4/3/2006 2:40:00 PM

0

Tim Garwood wrote:
> Hello,
>
> This is my first post. I read a post from a little while ago about
> having trouble getting io/wait to work on Windows. I downloaded the
> win32utils library off of rubyforge and installed it to the default path
> of:
>
> c:\ruby\lib\ruby\site_ruby\1.8\i386-msvcrt\win32
>
> The code that I have that is using io/wait is:
>
> ---------------------------------------------
> require 'io/wait'
> require 'rubygems'
> require 'stomp'
>
> c = Stomp::Client.new "blahuser", "blahpass", "localhost", 61626
> c.subscribe("/queue/blah") { |m| puts m.body }
> c.send("/queue/blah", "Hello, World")
> ---------------------------------------------
>
> Do I need to change the require 'io/wait' line to something different
> now that I have win32utils installed? Or do I need to reinstall to a
> different directory or something? I can't seem to find information on
> this anywhere except for the 1 post from before.
>
> Thank you,
> -Tim

I should probably add that the error I'm getting is in
custom_require.rb:18 and it says:

No such file to load -- io/wait (LoadError)

Also, the whole reason for writing this is because I'm trying to get
Stomp running with ActiveMQ and I'm trying to test it with this little
bit of code.

-Tim




--
Posted via http://www.ruby-....


Konstantin Levinski

4/3/2006 5:17:00 PM

0

generally, you can look into variable $: to see where ruby looks for
things.
p $:
then it is usually easy to figure out what to 'require' to get the
library to load.

Daniel Harple

4/3/2006 5:35:00 PM

0

On Apr 3, 2006, at 7:18 PM, Konstantin Levinski wrote:

> generally, you can look into variable $: to see where ruby looks for
> things.

Or use the understandable name:

$LOAD_PATH

-- Daniel


Tim Garwood

4/4/2006 12:57:00 PM

0

Daniel Harple wrote:
> On Apr 3, 2006, at 7:18 PM, Konstantin Levinski wrote:
>
>> generally, you can look into variable $: to see where ruby looks for
>> things.
>
> Or use the understandable name:
>
> $LOAD_PATH
>
> -- Daniel

Alright, thanks guys. I will try this out.

-Tim


--
Posted via http://www.ruby-....