This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.
from_xml(xml, save_cache = false)
Grabs errors from an XML response.
# File activeresource/lib/active_resource/validations.rb, line 35 def from_xml(xml, save_cache = false) array = Array.wrap(Hash.from_xml(xml)['errors']['error']) rescue [] from_array array, save_cache end