class Nokogiri::HTML4::Document

def title

no title tag.
Get the title string of this document. Return nil if there is
##
def title
  (title = at_xpath("//title")) && title.inner_text
end