aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/application/route_inspector.rb
Commit message (Collapse)AuthorAgeFilesLines
* Rename RouteInspect to RoutesInspector for consistencyJosé Valim2012-06-291-121/+0
|
* /rails/info/routes path shows routing informationschneems2012-05-241-1/+1
| | | | Will show similar contents to the output of `$ rake routes` in the browser in development. This speeds the time required to generate routes, since the application is already initialized.
* Improve `rake routes` output for redirects - closes #6369.Andrew White2012-05-191-1/+1
|
* Fix inspecting route redirections, closes #6369Łukasz Strzałkowski2012-05-181-2/+2
| | | | | | | | | | | | This commit fixes route inspection in `rake routes` Before: foo /foo(.:format) :controller#:action" After: foo /foo(.:format) Redirect (301)
* remove usages of AS::OrderedHashVishnu Atrai2012-03-031-1/+1
|
* Don't hardcode assets route skipped in route inspectorGuillermo Iguaran2012-01-141-1/+1
|
* Refactor RouteInspectorPiotr Sarnacki2011-12-261-32/+69
|
* Correctly display rack apps with dynamic constraints in RoutesInspectorPiotr Sarnacki2011-12-261-1/+10
| | | | | | | | | | | | | If you used dynamic constraint like that: scope :constraint => MyConstraint.new do mount RackApp => "/foo" end routes were not displayed correctly when using `rake routes`. This commit fixes it. If you want nice display of dynamic constraints in `rake routes` output, please just override to_s method in your constraint's class.
* Display mounted engines in `rake routes` by defaultPiotr Sarnacki2011-11-251-1/+1
|
* Allow to display engine's routes when running `rake routes ENGINES=true`Piotr Sarnacki2011-11-241-3/+34
|
* On inpsect routes, show :controller and :action to indicate dynamic.Hendy Tanata2011-10-291-7/+8
|
* adjust route inspection to work with JourneyAaron Patterson2011-09-121-1/+2
|
* move route inspecting to an object so that we can more easily test itAaron Patterson2011-09-091-0/+42