diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-08-22 22:12:24 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-08-22 22:12:24 -0300 |
commit | 16fbe6f3e3f10d8f4bc72c3b7b9e5e35df2ee3a4 (patch) | |
tree | 571cbc51b3a19443d4d9c58d5d639138124b1fe6 /railties | |
parent | 7f1dc4ad454c10573405f6d1c29e70341ff7f618 (diff) | |
download | rails-16fbe6f3e3f10d8f4bc72c3b7b9e5e35df2ee3a4.tar.gz rails-16fbe6f3e3f10d8f4bc72c3b7b9e5e35df2ee3a4.tar.bz2 rails-16fbe6f3e3f10d8f4bc72c3b7b9e5e35df2ee3a4.zip |
Update the ducumentation about the before_eager_load callback [ci skip]
Diffstat (limited to 'railties')
-rw-r--r-- | railties/lib/rails/application.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/application.rb b/railties/lib/rails/application.rb index ae872f2bb0..80b8e4b9ba 100644 --- a/railties/lib/rails/application.rb +++ b/railties/lib/rails/application.rb @@ -46,7 +46,7 @@ module Rails # One by one, each engine sets up its load paths, routes and runs its config/initializers/* files. # 9) Custom Railtie#initializers added by railties, engines and applications are executed # 10) Build the middleware stack and run to_prepare callbacks - # 11) Run config.before_eager_load and eager_load if cache classes is true + # 11) Run config.before_eager_load and eager_load! if eager_load is true # 12) Run config.after_initialize callbacks # class Application < Engine |