class Procurator

Constants

VERSION

Public Instance Methods

get_page_html(link) click to toggle source
# File lib/procurator.rb, line 5
def get_page_html link
        agent = Mechanize.new
        page = agent.get(link)
        agent.shutdown
        
        return page
end