Skip to content

Instantly share code, notes, and snippets.

@semaperepelitsa
Created July 7, 2015 23:41
Show Gist options
  • Save semaperepelitsa/50d64e4559c6875b570c to your computer and use it in GitHub Desktop.
Save semaperepelitsa/50d64e4559c6875b570c to your computer and use it in GitHub Desktop.
Nokogiri node.value_of
gem "nokogiri", "~> 1.6.0"
require "nokogiri"
Nokogiri::XML::Searchable.module_eval do
def value_of(*args)
a = search(*args).first
a && a.content
end
alias :content_of :value_of
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment