I want to get the content off this* page. Everything I\'ve looked up gives the solution of parsing CSS elements; but, that page has none.
Here\'s the only code that
Please use open-uri, its support both uri and local files
require 'open-uri' contents = open('http://www.google.com') {|f| f.read }