aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json
Commit message (Expand)AuthorAgeFilesLines
* Change JSON to encode %w(< > &) as 4 digit hex codes to be in compliance with...Rick Olson2007-10-291-3/+4
* Fix JSON encoding/decoding bugs dealing with /'s. Closes #9990 [Rick, theama...Rick Olson2007-10-262-10/+12
* Add an ignored options parameter to ActiveSupport::JSON::Variable#to_json to ...Michael Koziarski2007-10-251-1/+1
* Document Enumerable and Hash #to_json. Add test for hash with integer key. Cl...Jeremy Kemper2007-10-242-0/+39
* Don't shadow local var with block varJeremy Kemper2007-10-131-1/+1
* Disambiguate Time, Date, and DateTime#to_json formatting. Closes #9750.Jeremy Kemper2007-10-053-3/+3
* Hash#to_json takes :only or :except options to specific or omit certain hash ...Jeremy Kemper2007-10-0414-24/+28
* Fixed JSON encoding to use quoted keys according to the JSON standard (closes...David Heinemeier Hansson2007-09-303-15/+1
* JSON decoding Ruby 1.9 compat. Mark a section that's unnecessarily slow.Jeremy Kemper2007-09-291-5/+6
* Decode json strings as Dates/Times if they're using a YAML-compatible format....Rick Olson2007-09-241-5/+18
* Fix JSON decoder with nested quotes and commas. Closes #9579.Jeremy Kemper2007-09-171-4/+9
* escape <'s and >'s in JSON strings. #8371 [Rick]Rick Olson2007-05-291-2/+4
* Date, Time, and DateTime#to_json. Closes #8399.Jeremy Kemper2007-05-183-0/+15
* Silence some warnings.Jeremy Kemper2007-05-181-2/+7
* Refactor ActiveSupport::JSON to be less obtuse. Add support for JSON decodin...Sam Stephenson2007-03-1815-93/+179
* Don't quote hash keys in Hash#to_json if they're valid JavaScript identifiers.Sam Stephenson2006-11-111-2/+4
* Fix unicode JSON regexp for Onigurama compatibility. Closes #6494.Jeremy Kemper2006-11-051-1/+1
* Greatly increased performance of String.to_json, which speeds up RJS consider...Thomas Fuchs2006-08-181-16/+17
* Fixed docsDavid Heinemeier Hansson2006-03-281-1/+1
* RJS now does enumerations, baby! (closes #3876) [Rick Olson]David Heinemeier Hansson2006-03-031-0/+4
* Add ActiveSupport::JSON and Object#to_json for converting Ruby objects to JSO...Sam Stephenson2005-12-272-0/+86