Check
Check config/routes to make sure not use default route that rails generated.
Implementation: compare route sentence to see if it is equal to rails default route.
# File lib/rails_best_practices/checks/not_use_default_route_check.rb, line 18 def evaluate_start(node) if node == s(:call, s(:lvar, :map), :connect, s(:arglist, s(:str, ":controller/:action/:id"))) or node == s(:call, s(:lvar, :map), :connect, s(:arglist, s(:str, ":controller/:action/:id.:format"))) add_error "not use default route" end end
Generated with the Darkfish Rdoc Generator 2.