aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'railties/CHANGELOG.md')
-rw-r--r--railties/CHANGELOG.md7
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*