ahc 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/ahcx_template_handler.rb +1 -1
- metadata +1 -1
@@ -44,7 +44,7 @@ class AhcxTemplateHandler
|
|
44
44
|
ESCAPED_SYMBOLS.each do |sym, escaped_sym|
|
45
45
|
ahcx_source.gsub!(sym, escaped_sym)
|
46
46
|
end
|
47
|
-
ahcx = Nokogiri.parse(ahcx_source)
|
47
|
+
ahcx = Nokogiri::XML.parse(ahcx_source)
|
48
48
|
content = ''
|
49
49
|
ahcx.children.first.children.each do |node|
|
50
50
|
content += node_content(node)
|