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