aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/backends/jsongem.rb
Commit message (Collapse)AuthorAgeFilesLines
* load the JSON Backend lazily. If the JSON gem is already loaded, use the ↵rick2009-05-171-1/+3
| | | | JSONGem backend by default.
* Add support for parsing XML and JSON from an IO as well as a string [#2659 ↵Brian Lopez2009-05-171-1/+4
| | | | | | state:resolved] Signed-off-by: Joshua Peek <josh@joshpeek.com>
* * Add pluggable JSON backends with support for the JSON gem. [rick]rick2009-04-231-0/+36
Example: ActiveSupport::JSON.backend = "JSONGem" All internal Rails JSON encoding is now handled by ActiveSupport::JSON.encode(). Use of #to_json is not recommended, as it may clash with other libraries that overwrite it. However, you can recover Rails specific functionality if you really want to use #to_json. gem 'json' ActiveSupport::JSON.backend = "JSONGem" class ActiveRecord::Base alias to_json rails_to_json end