Possible Ruby Bug?

Sorry for the late reply. There's a bug fix in CVS that we haven't
released yet that may address this issue. Can you grab the latest from
CVS and let us know if you still get the same error?

Thanks,

Dan

This communication is the property of Qwest and may contain confidential or
privileged information. Unauthorized use of this communication is strictly
prohibited and may be unlawful. If you have received this communication
in error, please immediately notify the sender by reply e-mail and destroy
all copies of the communication and any attachments.

ยทยทยท

-----Original Message-----
From: list-bounce@example.com
[mailto:list-bounce@example.com] On Behalf Of Brad
Sent: Thursday, April 27, 2006 4:12 PM
To: ruby-talk ML
Subject: Possible Ruby Bug?

require 'open-uri'

#~ When I require all three of the following modules

require 'fileutils'

require 'tempfile'

require 'win32/taskscheduler'

#~ I get this error on Windows 2003 SP1:

#~ This application has requested the Runtime to terminate it in an
unusual way.

#~ Please contact the application's support team for more information.

#~ c:/ruby/lib/ruby/1.8/net/protocol.rb:90: [BUG] Segmentation fault

#~ ruby 1.8.4 (2005-12-24) [i386-mswin32]

#~ When I comment out any one of the three modules, it works fine.

#~ Is this a bug or am I doing something wrong?

def read_a_webpage
  #~ This uses OpenURI
  page = open('http://google.com/'\).read

  puts page

end

read_a_webpage