1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 10:22:08 +02:00
tldr/pages/common/rails-routes.md
2020-03-20 20:57:27 +00:00

462 B

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 --expanded

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

rails routes -g {{posts_path|GET|/posts}}

  • List routes that map to a specified controller:

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