aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2006-02-07 00:21:45 +0000
committerMichael Koziarski <michael@koziarski.com>2006-02-07 00:21:45 +0000
commit49fad6e6d5171e632086d7f7491ef14c8a04e4cc (patch)
treeb1674e0ff6eb9a00aee7894f6f12b67052657c40 /railties/CHANGELOG
parent7139e2a0e1c24788758ccd6131ba86243de84bf6 (diff)
downloadrails-49fad6e6d5171e632086d7f7491ef14c8a04e4cc.tar.gz
rails-49fad6e6d5171e632086d7f7491ef14c8a04e4cc.tar.bz2
rails-49fad6e6d5171e632086d7f7491ef14c8a04e4cc.zip
Add Configuration#after_initialize for specifying a block to be executed after the framework is completely initialized.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3547 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 76de230e28..ba9d2930b3 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Added Configuration#after_initialize for registering a block which gets called after the framework is fully initialized. Useful for things like per-environment configuration of plugins. [Michael Koziarski]
+
* Added check for RAILS_FRAMEWORK_ROOT constant that allows the Rails framework to be found in a different place than vendor/rails. Should be set in boot.rb. [DHH]
* Fixed that static requests could unlock the mutex guarding dynamic requests in the WEBrick servlet #3433 [tom@craz8.com]