# HG changeset patch # User Edho Arief # Date 1367939313 -32400 # Node ID f513b1ca455a5c0c71cd35a2dd457ca5c904c87a # Parent af80541dc9156e9c04b97efab05c529386cc11e0 Add the new eager_load config parameter. diff -r af80541dc915 -r f513b1ca455a config/environments/development.rb --- a/config/environments/development.rb Wed May 08 00:03:01 2013 +0900 +++ b/config/environments/development.rb Wed May 08 00:08:33 2013 +0900 @@ -27,4 +27,6 @@ # Expands the lines which load the assets config.assets.debug = true + + config.eager_load = false end diff -r af80541dc915 -r f513b1ca455a config/environments/production.rb --- a/config/environments/production.rb Wed May 08 00:03:01 2013 +0900 +++ b/config/environments/production.rb Wed May 08 00:08:33 2013 +0900 @@ -60,4 +60,6 @@ # Send deprecation notices to registered listeners config.active_support.deprecation = :notify + + config.eager_load = true end diff -r af80541dc915 -r f513b1ca455a config/environments/test.rb --- a/config/environments/test.rb Wed May 08 00:03:01 2013 +0900 +++ b/config/environments/test.rb Wed May 08 00:08:33 2013 +0900 @@ -31,4 +31,6 @@ # Print deprecation notices to the stderr config.active_support.deprecation = :stderr + + config.eager_load = false end