aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2011-11-24 01:59:01 +0100
committerPiotr Sarnacki <drogus@gmail.com>2011-11-24 13:40:27 +0100
commita478389b7d70536f1629d080a50a9ecd87c005d0 (patch)
tree9c6daa56b1762e6b9ad883f48a5a3bf3d898a5e7 /railties
parente6cfd853613f9d9e0232512146e40db4ee232a3c (diff)
downloadrails-a478389b7d70536f1629d080a50a9ecd87c005d0.tar.gz
rails-a478389b7d70536f1629d080a50a9ecd87c005d0.tar.bz2
rails-a478389b7d70536f1629d080a50a9ecd87c005d0.zip
Forgot to add CHANGELOG entry for config.railties_order
Diffstat (limited to 'railties')
-rw-r--r--railties/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md
index b05ac21b49..2d7a1db2be 100644
--- a/railties/CHANGELOG.md
+++ b/railties/CHANGELOG.md
@@ -1,5 +1,9 @@
## Rails 3.2.0 (unreleased) ##
+* Allow to change the loading order of railties with `config.railties_order=`. Example:
+
+ config.railties_order = [Blog::Engine, :main_app, :all]
+
* Scaffold returns 204 No Content for API requests without content. This makes scaffold work with jQuery out of the box. *José Valim*
* Updated Rails::Rack::Logger middleware to apply any tags set in config.log_tags to the newly ActiveSupport::TaggedLogging Rails.logger. This makes it easy to tag log lines with debug information like subdomain and request id -- both very helpful in debugging multi-user production applications *DHH*