Created
July 7, 2015 23:41
-
-
Save semaperepelitsa/50d64e4559c6875b570c to your computer and use it in GitHub Desktop.
Nokogiri node.value_of
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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