aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/route_inspect_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Define #inspect instead of #to_sPrem Sichanugrist2013-02-241-2/+2
| | | | Ruby 2.0 Object#inspect does not call #to_s by default anymore.
* Update mocha version to 0.13.0 and change requiresCarlos Antonio da Silva2012-11-131-1/+1
|
* Don't hardcode assets route skipped in route inspectorGuillermo Iguaran2012-01-151-0/+15
| | | | | | Conflicts: railties/lib/rails/application/route_inspector.rb
* Correctly display rack apps with dynamic constraints in RoutesInspectorPiotr Sarnacki2011-12-261-0/+17
| | | | | | | | | | | | | 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-4/+0
|
* Allow to display engine's routes when running `rake routes ENGINES=true`Piotr Sarnacki2011-11-241-0/+30
|
* On inpsect routes, show :controller and :action to indicate dynamic.Hendy Tanata2011-10-291-2/+10
|
* move route inspecting to an object so that we can more easily test itAaron Patterson2011-09-091-0/+97