summaryrefslogtreecommitdiff
path: root/config/initializers/xmlparser.rb
blob: ba8660a5fd468b24ea364ae253fb45a98aab09eb (plain)
1
2
3
4
5
6
class XML::Node
  def replace_with(other) 
    self.next = other
    remove!
  end
end