├── .gitignore ├── .travis.yml ├── Gemfile ├── MIT-LICENSE ├── README.md ├── Rakefile ├── activesupport-json_encoder.gemspec ├── gemfiles ├── Gemfile-4-1-stable └── Gemfile-edge ├── lib ├── active_support │ └── json │ │ └── encoding │ │ └── active_support_encoder.rb └── activesupport │ └── json_encoder.rb └── test ├── active_support_encoder_test.rb └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/Gemfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/Rakefile -------------------------------------------------------------------------------- /activesupport-json_encoder.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/activesupport-json_encoder.gemspec -------------------------------------------------------------------------------- /gemfiles/Gemfile-4-1-stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/gemfiles/Gemfile-4-1-stable -------------------------------------------------------------------------------- /gemfiles/Gemfile-edge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/gemfiles/Gemfile-edge -------------------------------------------------------------------------------- /lib/active_support/json/encoding/active_support_encoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/lib/active_support/json/encoding/active_support_encoder.rb -------------------------------------------------------------------------------- /lib/activesupport/json_encoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/lib/activesupport/json_encoder.rb -------------------------------------------------------------------------------- /test/active_support_encoder_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/test/active_support_encoder_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rails/activesupport-json_encoder/HEAD/test/test_helper.rb --------------------------------------------------------------------------------