I'm having an issue getting Nokogiri to work properly. I'm using version 1.4.4 with Ruby 1.9.2.
I have both libxml2 libxslt installed and up to date. When I run a Ruby script with XML, it works great.
require 'nokogiri'
doc = Nokogiri::XML(File.open("test.xml"))
doc = doc.css("name").each do |node|
puts node.text
end
Enter into the CL, run ruby test.rb, returns
Name 1
Name 2
Name 3
And the crowd goes wild. I tweak a few things, make a few adjustments to the code...
require 'nokogiri'
require 'open-uri'
doc = Nokogiri::HTML(open("http://domain.tld"))
doc = doc.css("p").each do |node|
puts node.text
end
Back to CL, ruby test.rb, returns... nothing! Just a new, empty line.
Is there any reason that it will work with an XML file, but not HTML?
puts 1in there will tell us if the problem is in obtaining thepnodes or with populating them. Also, have you checked to make sure doc is getting populated? This information will help determine the issue. – Chuck Callebs Apr 13 '11 at 15:33puts node.textwithputs 1and I didn't get any output. – werm Apr 13 '11 at 15:53puts docand it will tell you ifdocis nil or not. – Chuck Callebs Apr 13 '11 at 15:54