diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2011-11-24 01:45:50 +0100 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2011-11-24 16:16:00 +0100 |
commit | 0cd3bf84068dd2b2d0bbb26062f2cdc7093a1b04 (patch) | |
tree | 13e3b3e3461f7a4221909bb966f0c6104676e853 /railties/CHANGELOG.md | |
parent | 30cf3e16a079f833cf396ad9dfaa3a2d4652142d (diff) | |
download | rails-0cd3bf84068dd2b2d0bbb26062f2cdc7093a1b04.tar.gz rails-0cd3bf84068dd2b2d0bbb26062f2cdc7093a1b04.tar.bz2 rails-0cd3bf84068dd2b2d0bbb26062f2cdc7093a1b04.zip |
Allow to display engine's routes when running `rake routes ENGINES=true`
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r-- | railties/CHANGELOG.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index 2d7a1db2be..a7afb72562 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -1,8 +1,11 @@ ## Rails 3.2.0 (unreleased) ## -* Allow to change the loading order of railties with `config.railties_order=`. Example: +* Added displaying of mounted engine's routes with `rake routes ENGINES=true`. *Piotr Sarnacki* - config.railties_order = [Blog::Engine, :main_app, :all] +* Allow to change the loading order of railties with `config.railties_order=`. *Piotr Sarnacki* + + 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* |