2020-03-20 13:57:27 -07:00
|
|
|
# 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:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`rails routes {{[-g|--grep]}} {{posts_path|GET|/posts}}`
|
2020-03-20 13:57:27 -07:00
|
|
|
|
|
|
|
- List routes that map to a specified controller:
|
|
|
|
|
2025-04-22 06:20:48 +03:00
|
|
|
`rails routes {{[-c|--controller]}} {{posts|Posts|Blogs::PostsController}}`
|