Class: REXML::Element
Overview
REXML::Element extensions
Instance Method Summary collapse
-
#remove_attributes ⇒ Object
Remove all attributes from the element.
Instance Method Details
#remove_attributes ⇒ Object
Remove all attributes from the element.
197 198 199 200 |
# File 'lib/webget_ruby_ramp/xml.rb', line 197 def remove_attributes self.attributes.each_attribute{|attribute| attribute.remove } self end |