aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/coders/json.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/lib/active_record/coders/json.rb')
-rw-r--r--activerecord/lib/active_record/coders/json.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/activerecord/lib/active_record/coders/json.rb b/activerecord/lib/active_record/coders/json.rb
deleted file mode 100644
index 0f60b6dab2..0000000000
--- a/activerecord/lib/active_record/coders/json.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-module ActiveRecord
- module Coders # :nodoc:
- class JSON # :nodoc:
- def self.dump(obj)
- ActiveSupport::JSON.encode(obj)
- end
-
- def self.load(json)
- ActiveSupport::JSON.decode(json)
- end
- end
- end
-end