method
from_xml
v2.0.3 -
Show latest stable
- Class:
ActiveSupport::CoreExtensions::Hash::ClassMethods
from_xml(xml)public
No documentation available.
# File activesupport/lib/active_support/core_ext/hash/conversions.rb, line 152
def from_xml(xml)
# TODO: Refactor this into something much cleaner that doesn't rely on XmlSimple
typecast_xml_value(undasherize_keys(XmlSimple.xml_in_string(xml,
'forcearray' => false,
'forcecontent' => true,
'keeproot' => true,
'contentkey' => '__content__')
))
end