logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Rails Routes - List Routes in Rails Apps | Online Free DevTools by Hexmos

List routes easily with Rails Routes. Inspect routes, filter by controller or path, and debug routing configurations. Free online tool, no registration required.

rails-routes

List routes in a Rails application. More information: https://guides.rubyonrails.org/routing.html.

  • List all routes:

rails routes

  • List all routes in an expanded format:

rails routes {{[-E|--expanded]}}

  • List routes partially matching URL helper method name, HTTP verb, or URL path:

rails routes {{[-g|--grep]}} {{posts_path|GET|/posts}}

  • List routes that map to a specified controller:

rails routes {{[-c|--controller]}} {{posts|Posts|Blogs::PostsController}}

See Also