I've got a script that works for 99% of the pages I want to scrape but just a few of them don't have what I am looking for and my script errors out with a
undefined method `attribute' for nil:NilClass (NoMethodError)
The code is a bit ugly from fiddling around and debugging but here is what I am doing. The error is on the third line and is simply because in the error cases there is no .entry-content img:
doc = Nokogiri::HTML(open(url))
image_link = doc.css(".entry-content img")
temp = image_link.attribute('src').to_s
How can I detect this and handle the error when the image_link returned by Nokogiri isn't nil?