class Nokogiri::XML::NodeSet

def inner_text

Get the inner text of all contained Node objects
##
def inner_text
  collect{|j| j.inner_text}.join('')
end