aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoding.rb
Commit message (Expand)AuthorAgeFilesLines
* Revert "Remove unicode character encoding from ActiveSupport::JSON.encode"Rafael Mendonça França2013-05-081-1/+7
* Remove unicode character encoding from ActiveSupport::JSON.encodeBrett Carter2012-12-141-7/+1
* backport #8185, `#as_json` isolates options when encoding a hash.Yves Senn2012-11-131-1/+1
* True, False, and Nil should be represented in as_json as themselves.Erich Menge2012-05-301-6/+6
* fixes in api docsVijay Dev2012-01-131-3/+3
* Revert "Implement ArraySerializer and move old serialization API to a new nam...José Valim2011-11-301-1/+1
* Implement ArraySerializer and move old serialization API to a new namespace.José Valim2011-11-231-4/+4
* Set the default options value for as_json in the encoder object.José Valim2011-09-301-2/+2
* Removed deprecated methods and related tests from ActiveSupportJosh Kalderimis2011-05-251-3/+0
* Use set data structure to speed up circular reference checks on large/deeply ...Andy Lindeman2011-05-231-4/+4
* add missing require for ordered_hash dependencyCorin Langosch2011-05-111-0/+1
* Enumerable should pass encoding options to children in #as_json/#to_json.John Firebaugh2011-04-011-1/+3
* Updated the json date regex to recognize xmlschema formatted date times durin...Josh Kalderimis2011-02-121-1/+1
* Complex struct encoding fixAlexey Nayden2011-01-151-0/+6
* Perf: speed up json encoding.Emilio Tagua2010-09-221-3/+2
* fixed some issues with JSON encodingJakub Suder2010-09-071-6/+44
* Move Date#xmlschema to conversions and add a missing requireSantiago Pastorino2010-07-041-0/+2
* Time#formatted_offset is defined in core_ext/time/conversionsSantiago Pastorino2010-07-021-0/+1
* Time#as_json: use Time#formatted_offset instead of strftime %z directive, whi...Geoff Buesing2010-07-021-1/+1
* Time has it own implementation of xmlschema, now AMo doesn't depend on TZInfoSantiago Pastorino2010-07-021-2/+2
* AS json refactor, move to_json implementation to core_ext and a cleanup a bit...Santiago Pastorino2010-07-011-31/+6
* Work around the fact the JSON gem was overwriting to_json implementation for ...José Valim2010-06-261-5/+14
* adds a comment explaining why BigDecimal#as_json returns a JSON stringXavier Noria2010-05-031-1/+9
* Missing require added make pass activesupport/test/json/encoding_test.rb in i...Santiago Pastorino2010-05-021-0/+1
* use ordinary syntax for options to be well-formed in 1.8Xavier Noria2010-04-271-1/+1
* JSON: encode objects that don't have a native JSON representation using to_ha...Jeremy Kemper2010-04-261-5/+19
* Changed the default ActiveSupport.use_standard_json_time_format from false to...David Heinemeier Hansson2010-01-031-1/+2
* Fix ActiveSupport::JSON encoding of control characters [\x00-\x1f]Dwayne Litzenberger2009-12-231-2/+11
* Repair time dependenciesJeremy Kemper2009-11-141-1/+1
* Clarify date/time dependenciesJeremy Kemper2009-11-021-3/+0
* JSON.escape returns UTF-8 stringsJeremy Kemper2009-07-011-5/+7
* uses Hash#except/sliceJeremy Kemper2009-07-011-0/+2
* Add basic JSON serializer to AMoJoshua Peek2009-06-171-0/+5
* Ruby 1.9: fix json encodingJeremy Kemper2009-06-081-1/+2
* JSON: split encoding and coercionJeremy Kemper2009-06-081-24/+205
* Use __send__ for BasicObject friendlinessJeremy Kemper2009-04-261-1/+1
* Now that we have a separate internal rails_to_json, use a separate circular r...Jeremy Kemper2009-04-261-6/+7
* Only Object to_json alias is needed. Prefer nil options.Jeremy Kemper2009-04-261-1/+2
* Track object ids so the objects needn't respond to ==Jeremy Kemper2009-04-261-2/+2
* * Add pluggable JSON backends with support for the JSON gem. [rick]rick2009-04-231-1/+1
* Simpler and clearer to just explicitly require the JSON encodersJeremy Kemper2008-11-261-9/+15
* Eliminate thread-local circular reference stack by passing it as an argument ...Jeremy Kemper2008-11-231-20/+8
* Add config.active_support.escape_html_entities_in_json to allow disabling of ...Rick Olson2008-04-081-1/+0
* Hash#to_json takes :only or :except options to specific or omit certain hash ...Jeremy Kemper2007-10-041-2/+2
* Fixed JSON encoding to use quoted keys according to the JSON standard (closes...David Heinemeier Hansson2007-09-301-12/+0
* Silence some warnings.Jeremy Kemper2007-05-181-2/+7
* Refactor ActiveSupport::JSON to be less obtuse. Add support for JSON decodin...Sam Stephenson2007-03-181-0/+45