require 'tap/mechanize/request' module Tap module Mechanize # :startdoc::manifest gets the uri # # Submits an Http request to the specified uri and returns the message # body. # # % tap run -- get http://tap.rubyforge.org --: dump # class Get < Request # Gets the uri and returns the page content. def process(uri) super(:uri => uri).content end end end end