aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/coders/json.rb
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2014-07-05 15:29:15 -0700
committerGodfrey Chan <godfreykfc@gmail.com>2014-07-05 15:29:15 -0700
commit6f3c64eeb1dc8288dae49f114aaf619adc7dcb7f (patch)
tree57d11c3bab0f301739c21c7c3cd8c94a266cdc1d /activerecord/lib/active_record/coders/json.rb
parenta03097759bd7103bb9db253e7ba095f011453f75 (diff)
downloadrails-6f3c64eeb1dc8288dae49f114aaf619adc7dcb7f.tar.gz
rails-6f3c64eeb1dc8288dae49f114aaf619adc7dcb7f.tar.bz2
rails-6f3c64eeb1dc8288dae49f114aaf619adc7dcb7f.zip
Revert "Merge pull request #16059 from jenncoop/json-serialized-attr"
This reverts commit a03097759bd7103bb9db253e7ba095f011453f75. This needs more work before it would work correctly on master.
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