Module: ActiveResource::Formats::XmlFormat

Extended by:
XmlFormat
Included in:
XmlFormat
Defined in:
activeresource/lib/active_resource/formats/xml_format.rb

Instance Method Summary collapse

Instance Method Details

#decode(xml) ⇒ Object



20
21
22
# File 'activeresource/lib/active_resource/formats/xml_format.rb', line 20

def decode(xml)
  Formats.remove_root(Hash.from_xml(xml))
end

#encode(hash, options = {}) ⇒ Object



16
17
18
# File 'activeresource/lib/active_resource/formats/xml_format.rb', line 16

def encode(hash, options={})
  hash.to_xml(options)
end

#extensionObject



8
9
10
# File 'activeresource/lib/active_resource/formats/xml_format.rb', line 8

def extension
  "xml"
end

#mime_typeObject



12
13
14
# File 'activeresource/lib/active_resource/formats/xml_format.rb', line 12

def mime_type
  "application/xml"
end