REXML::Attributes#to_hash seems to be broken.
convert attributes to an instance of Hash.
[Source]
# File lib/violet/helpers.rb, line 18 18: def to_hash 19: h = Hash.new 20: self.each { |key,value| h[key.to_sym] = value } 21: h 22: end
[Validate]