aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders
Commit message (Expand)AuthorAgeFilesLines
* Explicit dependency on Object#instance_values extensionJeremy Kemper2009-03-281-0/+2
* Explicit dependency on Array#wrap extensionJeremy Kemper2009-03-281-0/+2
* Use Array.wrap, remove unneeded returning blockJeremy Kemper2009-02-061-10/+9
* Merge docrailsPratik Naik2009-01-183-3/+3
* Properly quote json keys.Michael Koziarski2009-01-161-2/+2
* Merge with docrails.Pratik Naik2008-07-163-7/+28
* Slightly faster DateTime#to_json. [#598 state:resolved] [Alex Zepeda]Pratik Naik2008-07-141-1/+1
* Time#to_json: don't convert to utc before encoding. References #175gbuesing2008-05-181-1/+1
* Add config.active_support.escape_html_entities_in_json to allow disabling of ...Rick Olson2008-04-081-1/+5
* Add config.active_support.use_standard_json_time_format setting so that Times...Rick Olson2008-04-013-3/+15
* Force json string encoding to ASCII-8BIT before unpacking for Ruby 1.9.Josh Peek2008-03-291-2/+4
* Improve documentation.Pratik Naik2008-03-266-12/+24
* Adding Time and DateTime #formatted_offset, for outputting +HH:MM utc offset ...Geoff Buesing2008-01-231-1/+1
* Time#to_json uses Numeric#to_utc_offset_s to output cross-platform-consistent...Geoff Buesing2008-01-121-1/+1
* Don't escape forward slashes with String#to_json, our unicode encoding of < a...Michael Koziarski2007-12-021-3/+2
* 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-261-9/+10
* Document Enumerable and Hash #to_json. Add test for hash with integer key. Cl...Jeremy Kemper2007-10-242-0/+39
* 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-0413-22/+26
* Fixed JSON encoding to use quoted keys according to the JSON standard (closes...David Heinemeier Hansson2007-09-301-2/+0
* 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
* Refactor ActiveSupport::JSON to be less obtuse. Add support for JSON decodin...Sam Stephenson2007-03-1811-68/+84
* 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-271-0/+61