Subject: Re: Downloading a file using ruby
From: bwv549 <jtprince gmail.com>
Date: Wed, 8 Apr 2009 06:34:08 +0900
References: 333200
require 'open-uri'
open("http://localhost/jtprince/TRASH.TRASH") do |io|
data = io.read
end
Are you looking for something like that? This works on my own machine
to grab files under the web server.
--John