Started again with Rails 4
[feedcatcher.git] / vendor / rails / activeresource / lib / active_resource / formats / json_format.rb
diff --git a/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb b/vendor/rails/activeresource/lib/active_resource/formats/json_format.rb
deleted file mode 100644 (file)
index 1d88fc5..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-module ActiveResource
-  module Formats
-    module JsonFormat
-      extend self
-
-      def extension
-        "json"
-      end
-
-      def mime_type
-        "application/json"
-      end
-
-      def encode(hash, options={})
-        hash.to_json(options)
-      end
-
-      def decode(json)
-        ActiveSupport::JSON.decode(json)
-      end
-    end
-  end
-end