class RailsBestPractices::Reviews::NotUseDefaultRouteReview
match ‘:controller(/:action(/:id(.:format)))’
or
map.connect ‘:controller/:action/:id.:format’
map.connect ‘:controller/:action/:id’
check all method command_call or command node to see if it is the same as rails default route.
Review process:
Implementation:
See the best practice details here rails-bestpractices.com/posts/2010/07/22/not-use-default-route-if-you-use-restful-design/
Review config/routes file to make sure not use default route that rails generated.