System Grab Bag

View all TLDR pages from common (or from all pages)

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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.