aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/json
Commit message (Expand)AuthorAgeFilesLines
* BigDecimal#as_json does not really specify the F format, it delegates that to...Xavier Noria2010-05-031-1/+3
* Fix BigDecimal JSON encoding test. [#4495 state:resolved]Cezary Baginski2010-04-281-3/+3
* JSON: encode objects that don't have a native JSON representation using to_ha...Jeremy Kemper2010-04-261-2/+19
* Fix a JSON ordering issueYehuda Katz2010-02-101-3/+7
* Automatically prefer Yajl or JSON backend over Yaml, if availableJeremy Kemper2010-02-051-1/+1
* Add yajl-ruby as a JSON parsing backendBrian Lopez2010-02-051-0/+1
* Fix ActiveSupport::JSON encoding of control characters [\x00-\x1f]Dwayne Litzenberger2009-12-231-1/+3
* Repair time dependenciesJeremy Kemper2009-11-141-0/+1
* Clean up spurious JSON decoding test failureJeremy Kemper2009-09-131-8/+2
* Fix that JSON parser fails to read escaped backslashes.Daniel Sheppard2009-08-091-3/+5
* Fixed a bug in JSON decoding with Yaml backend, where a combination of dates,...Bas Van Klinkenberg2009-08-081-1/+7
* JSON.escape returns UTF-8 stringsJeremy Kemper2009-07-011-2/+7
* JSON: split encoding and coercionJeremy Kemper2009-06-081-7/+12
* load the JSON Backend lazily. If the JSON gem is already loaded, use the JSO...rick2009-05-171-0/+3
* Privatize rails_to_jsonJeremy Kemper2009-04-261-1/+1
* * Add pluggable JSON backends with support for the JSON gem. [rick]rick2009-04-232-44/+70
* Opt in to JSONJeremy Kemper2009-04-221-0/+1
* stdlib autoloads were hanging on 1.9.1Jeremy Kemper2009-04-221-2/+2
* Explicit test dependenciesJeremy Kemper2009-03-281-0/+1
* Reverted affe50105f7027a44eb6e9cfb56f5b3fc070b19b and added more JSON decodin...Ubiratan Pires Alberton2009-03-111-1/+3
* Properly decode \u escape sequences in JSON [#1100 state:resolved] [Tim Pope,...Tim Pope2009-03-101-1/+3
* Ruby 1.9 compat: rename deprecated assert_raises to assert_raise.Jeremy Kemper2009-03-082-2/+2
* Ruby 1.9 compat: fix JSON decoding to work properly with multibyte valuesAkira Matsuda2009-02-171-0/+3
* Properly quote json keys.Michael Koziarski2009-01-161-2/+2
* Fix JSON decoder date-converter regexp [#1662 state:resolved] [Jonathan del S...Pratik Naik2009-01-071-1/+2
* Require mocha >= 0.9.0 for AS testsJeremy Kemper2008-11-221-10/+8
* test nested hash with floatDan Barry2008-10-121-0/+12
* Move with_kcode helper to abstract_unit. Add tests for multibyte string exten...Manfred Stienstra2008-09-211-12/+0
* Time#to_json: don't convert to utc before encoding. References #175gbuesing2008-05-181-0/+16
* Add config.active_support.escape_html_entities_in_json to allow disabling of ...Rick Olson2008-04-081-0/+3
* Add config.active_support.use_standard_json_time_format setting so that Times...Rick Olson2008-04-011-3/+12
* Ruby 1.9 compat: declare utf-8 file encodingJeremy Kemper2008-02-021-0/+1
* require abstract_unit directly since test is in load pathJeremy Kemper2008-01-052-2/+2
* Ruby 1.9 compat: shadowed vars, kcodeJeremy Kemper2007-12-151-5/+17
* Don't escape forward slashes with String#to_json, our unicode encoding of < a...Michael Koziarski2007-12-021-1/+1
* Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with...Rick Olson2007-10-291-2/+2
* Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 [Rick, theama...Rick Olson2007-10-262-9/+11
* Document Enumerable and Hash #to_json. Add test for hash with integer key. Cl...Jeremy Kemper2007-10-241-0/+1
* Disambiguate Time, Date, and DateTime#to_json formatting. Closes #9750.Jeremy Kemper2007-10-051-3/+3
* Hash#to_json takes :only or :except options to specific or omit certain hash ...Jeremy Kemper2007-10-041-0/+21
* Fixed JSON encoding to use quoted keys according to the JSON standard (closes...David Heinemeier Hansson2007-09-301-29/+5
* Decode json strings as Dates/Times if they're using a YAML-compatible format....Rick Olson2007-09-241-3/+9
* Fix JSON decoder with nested quotes and commas. Closes #9579.Jeremy Kemper2007-09-171-0/+2
* Improve various test coverage. Closes #8676 [kamal]Jeremy Kemper2007-06-251-0/+4
* escape <'s and >'s in JSON strings. #8371 [Rick]Rick Olson2007-05-291-1/+1
* Fix JSON date/time conversion tests.Jeremy Kemper2007-05-231-2/+2
* Date, Time, and DateTime#to_json. Closes #8399.Jeremy Kemper2007-05-181-0/+4
* Refactor ActiveSupport::JSON to be less obtuse. Add support for JSON decodin...Sam Stephenson2007-03-182-0/+124