aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generator/templates/app/config/initializers/new_rails_defaults.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-06-16 15:57:14 +0200
committerJosé Valim <jose.valim@gmail.com>2009-06-19 16:10:42 +0200
commit720aceeea9083e8139e06be5aaaa3b9db98f344d (patch)
tree4b44f95f49acd087decf68d4e5a22cfab607356f /railties/lib/generator/templates/app/config/initializers/new_rails_defaults.rb
parentced68c7430216424419ecb4525d3bc6b6847f9c6 (diff)
downloadrails-720aceeea9083e8139e06be5aaaa3b9db98f344d.tar.gz
rails-720aceeea9083e8139e06be5aaaa3b9db98f344d.tar.bz2
rails-720aceeea9083e8139e06be5aaaa3b9db98f344d.zip
Send new files too.
Diffstat (limited to 'railties/lib/generator/templates/app/config/initializers/new_rails_defaults.rb')
-rw-r--r--railties/lib/generator/templates/app/config/initializers/new_rails_defaults.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/railties/lib/generator/templates/app/config/initializers/new_rails_defaults.rb b/railties/lib/generator/templates/app/config/initializers/new_rails_defaults.rb
new file mode 100644
index 0000000000..8ec3186c84
--- /dev/null
+++ b/railties/lib/generator/templates/app/config/initializers/new_rails_defaults.rb
@@ -0,0 +1,19 @@
+# Be sure to restart your server when you modify this file.
+
+# These settings change the behavior of Rails 2 apps and will be defaults
+# for Rails 3. You can remove this initializer when Rails 3 is released.
+
+if defined?(ActiveRecord)
+ # Include Active Record class name as root for JSON serialized output.
+ ActiveRecord::Base.include_root_in_json = true
+
+ # Store the full class name (including module namespace) in STI type column.
+ ActiveRecord::Base.store_full_sti_class = true
+end
+
+# Use ISO 8601 format for JSON serialized times and dates.
+ActiveSupport.use_standard_json_time_format = true
+
+# Don't escape HTML entities in JSON, leave that for the #json_escape helper.
+# if you're including raw json in an HTML page.
+ActiveSupport.escape_html_entities_in_json = false \ No newline at end of file