2009-02-04 21:26:08 +01:00
|
|
|
# Be sure to restart your server when you modify this file.
|
|
|
|
|
2008-06-02 08:35:38 +02:00
|
|
|
# These settings change the behavior of Rails 2 apps and will be defaults
|
2008-05-18 06:22:34 +02:00
|
|
|
# for Rails 3. You can remove this initializer when Rails 3 is released.
|
|
|
|
|
2008-09-07 07:54:05 +02:00
|
|
|
if defined?(ActiveRecord)
|
|
|
|
# Include Active Record class name as root for JSON serialized output.
|
|
|
|
ActiveRecord::Base.include_root_in_json = true
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2008-09-07 07:54:05 +02:00
|
|
|
# Store the full class name (including module namespace) in STI type column.
|
|
|
|
ActiveRecord::Base.store_full_sti_class = true
|
|
|
|
end
|
2008-06-02 08:35:38 +02:00
|
|
|
|
2009-09-05 09:01:46 +02:00
|
|
|
ActionController::Routing.generate_best_match = false
|
|
|
|
|
2008-06-02 08:35:38 +02:00
|
|
|
# Use ISO 8601 format for JSON serialized times and dates.
|
2008-05-18 06:22:34 +02:00
|
|
|
ActiveSupport.use_standard_json_time_format = true
|
|
|
|
|
2008-06-02 08:35:38 +02:00
|
|
|
# Don't escape HTML entities in JSON, leave that for the #json_escape helper.
|
2008-05-18 06:22:34 +02:00
|
|
|
# if you're including raw json in an HTML page.
|
|
|
|
ActiveSupport.escape_html_entities_in_json = false
|