aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/lib/active_resource/formats/xml_format.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activeresource/lib/active_resource/formats/xml_format.rb')
-rw-r--r--activeresource/lib/active_resource/formats/xml_format.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/activeresource/lib/active_resource/formats/xml_format.rb b/activeresource/lib/active_resource/formats/xml_format.rb
deleted file mode 100644
index 49cb9aa1ac..0000000000
--- a/activeresource/lib/active_resource/formats/xml_format.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-require 'active_support/core_ext/hash/conversions'
-
-module ActiveResource
- module Formats
- module XmlFormat
- extend self
-
- def extension
- "xml"
- end
-
- def mime_type
- "application/xml"
- end
-
- def encode(hash, options={})
- hash.to_xml(options)
- end
-
- def decode(xml)
- Formats.remove_root(Hash.from_xml(xml))
- end
- end
- end
-end