diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-10-17 20:27:03 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-10-17 20:27:03 +0000 |
commit | c1a52510ea1d20990b047e8b2aa8a7154a931f1b (patch) | |
tree | a3310071e09c0b9c8830c8e1756ddb6cd40c3d72 /railties/CHANGELOG | |
parent | 911f3db00abb7b35b400973c032e4e5c340bce6f (diff) | |
download | rails-c1a52510ea1d20990b047e8b2aa8a7154a931f1b.tar.gz rails-c1a52510ea1d20990b047e8b2aa8a7154a931f1b.tar.bz2 rails-c1a52510ea1d20990b047e8b2aa8a7154a931f1b.zip |
Added config.plugins to control which plugins are loaded #6269 [skaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5317 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r-- | railties/CHANGELOG | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 65c6a59974..eb18007d30 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,9 @@ *SVN* +* Added config.plugins to control which plugins are loaded #6269 [skaes]. By default, everything in vendor/plugins will be loaded, but if you specify config.plugins, only those will be loaded. Example: + + config.plugins = %w[ routing_navigator simply_helpful ] + * Clean up html on included error pages. [Tim Lucas] * Fixed default 404.html and 500.htmls to remove extreme ugliness and include human language [DHH] |