Module: ActiveResource::Formats::XmlFormat
Instance Method Summary collapse
Instance Method Details
#decode(xml) ⇒ Object
18 19 20 |
# File 'lib/active_resource/formats/xml_format.rb', line 18 def decode(xml) from_xml_data(Hash.from_xml(xml)) end |
#encode(hash, options = {}) ⇒ Object
14 15 16 |
# File 'lib/active_resource/formats/xml_format.rb', line 14 def encode(hash, ={}) hash.to_xml() end |
#extension ⇒ Object
6 7 8 |
# File 'lib/active_resource/formats/xml_format.rb', line 6 def extension "xml" end |
#mime_type ⇒ Object
10 11 12 |
# File 'lib/active_resource/formats/xml_format.rb', line 10 def mime_type "application/xml" end |