From: Derek Cannon Date: 2010-04-19T16:38:01+09:00 Subject: Re: how to scrap data with Nokogiri from this page? Also, how you would enter this information into Ruby using Nokogiri after letting SelectorGadget find the CSS path you want is: require 'nokogiri' require 'open-uri' doc = Nokogiri::HTML(open(YOUR_URL_HERE)) doc.css("YOUR SelectGadget PATH HERE").each { |i| # do something } -- Posted via http://www.ruby-forum.com/.