aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/json/encoders.rb')
-rw-r--r--activesupport/lib/active_support/json/encoders.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/activesupport/lib/active_support/json/encoders.rb b/activesupport/lib/active_support/json/encoders.rb
deleted file mode 100644
index c3e3619f59..0000000000
--- a/activesupport/lib/active_support/json/encoders.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-module ActiveSupport
- module JSON #:nodoc:
- module Encoders
- mattr_accessor :encoders
- @@encoders = {}
-
- class << self
- def define_encoder(klass, &block)
- encoders[klass] = block
- end
-
- def [](klass)
- klass.ancestors.each do |k|
- encoder = encoders[k]
- return encoder if encoder
- end
- end
- end
- end
- end
-end
-
-Dir[File.dirname(__FILE__) + '/encoders/*.rb'].each do |file|
- require file[0..-4]
-end