summaryrefslogtreecommitdiff
path: root/config/initializers/xmlparser.rb
blob: 9c3f1c81d1ca7272660d95c5d44f932ed9d236b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class XML::Node
  def replace_with(other) 
    self.next = other
    remove!
  end
end

module Builder
  class XmlBase
    def _escape(text)
      text
    end
  end
end