aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/configuring.textile
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2010-12-02 15:48:00 +1100
committerRyan Bigg <radarlistener@gmail.com>2010-12-02 15:48:00 +1100
commit9cbdbd59d1b16772b55891cdb1da975855bd90c4 (patch)
tree26ddda26a62a2ea261e72084da7eaa8fbfeb19dd /railties/guides/source/configuring.textile
parent32026b5867182dccbeeefb36728da4b0ce7b8b99 (diff)
downloadrails-9cbdbd59d1b16772b55891cdb1da975855bd90c4.tar.gz
rails-9cbdbd59d1b16772b55891cdb1da975855bd90c4.tar.bz2
rails-9cbdbd59d1b16772b55891cdb1da975855bd90c4.zip
Config guide: Rails has *5* initialization events
Diffstat (limited to 'railties/guides/source/configuring.textile')
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index 2482e64f70..f3ac3257c9 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -328,7 +328,7 @@ There are a few configuration options available in Active Support:
h3. Initialization events
-Rails has 4 initialization events which can be hooked into (listed in order that they are ran):
+Rails has 5 initialization events which can be hooked into (listed in order that they are ran):
* +before_configuration+: This is run as soon as the application constant inherits from +Rails::Application+. The +config+ calls are evaluated before this happens.
* +before_initialize+: This is run directly before the initialization process of the application occurs.