The quick way, if you just want the file contents:
require 'net/http'
data = Net::HTTP.get(URI.parse('http://www.google.com/index.html'))
.. data now has the contents of the file. Then there's the slightly
more involved way, which lets you reuse the http connection (if you
want to fetch more than one file), and get the headers, too:
google = Net::HTTP.new('www.google.com', 80)
headers, data = google.get 'index.html'
Net::HTTP#get (not Net::HTTP.get) returns an array, the first part is
the header info, the second is the file data.
hth,
Mark
You can't download a file. But you can download the contents of
a file and write to a file yourself. And the latter might be a
problem if you open the file with "w" instead of "wb" for
binary files.
gegroet,
Erik V. (http://www.erikveen.dds.nl/)
A #download(source, dest) might not be such a bad addition to the API,
at that.
martin