aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorschneems <richard.schneeman@gmail.com>2013-01-18 15:18:23 -0600
committerschneems <richard.schneeman@gmail.com>2013-01-20 23:10:24 -0600
commit8b72d689e3df55c5e6995a637436486f0837dc8e (patch)
tree64590d7aba44f4bba2bca4abe516788a40470662 /actionpack/CHANGELOG.md
parent2e8b3d5c9a7725911ee16d62b9f72edbaea87adb (diff)
downloadrails-8b72d689e3df55c5e6995a637436486f0837dc8e.tar.gz
rails-8b72d689e3df55c5e6995a637436486f0837dc8e.tar.bz2
rails-8b72d689e3df55c5e6995a637436486f0837dc8e.zip
In Browser Path Matching with Javascript
When debugging routes ,it can sometimes be difficult to understand exactly how the paths are matched. This PR adds a JS based path matching widget to the `/rails/info/routes` output. You can enter in a path, and it will tell you which of the routes that path matches, while preserving order (top match wins). The matching widget in action: ![](http://f.cl.ly/items/3A2F0v2m3m1Z1p3P3O3k/path-match.gif) Prior to this PR the only way to check matching paths is via mental math, or typing in a path in the url bar and seeing where it goes. This feature will be an invaluable debugging tool by dramatically decreasing the time needed to check a path match. ATP actionpack
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 3b2b1330fc..7309d42f17 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
+* Add javascript based routing path matcher to `/rails/info/routes`.
+ Routes can now be filtered by whether or not they match a path.
+
+ *Richard Schneeman*
+
* Given
params.permit(:name)