aboutsummaryrefslogtreecommitdiffstats
path: root/activeresource/lib/active_resource/formats/json_format.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activeresource/lib/active_resource/formats/json_format.rb')
-rw-r--r--activeresource/lib/active_resource/formats/json_format.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/activeresource/lib/active_resource/formats/json_format.rb b/activeresource/lib/active_resource/formats/json_format.rb
new file mode 100644
index 0000000000..df0d6ca372
--- /dev/null
+++ b/activeresource/lib/active_resource/formats/json_format.rb
@@ -0,0 +1,23 @@
+module ActiveResource
+ module Formats
+ module JsonFormat
+ extend self
+
+ def extension
+ "json"
+ end
+
+ def mime_type
+ "application/json"
+ end
+
+ def encode(hash)
+ hash.to_json
+ end
+
+ def decode(json)
+ ActiveSupport::JSON.decode(json)
+ end
+ end
+ end
+end \ No newline at end of file