From: Tim Garwood Date: 2006-04-03T23:40:09+09:00 Subject: Re: can't find io/wait on windows 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-forum.com/.