How to get route information for your Rails app - Lessons Learned 3 [1]
Submitted by uday [2] on September 25, 2020 - 3:29pmWe can get the route information in 2 ways.
1. From the terminal, run following command from the project home folder.
$rake routes
2. Form the browser, go to path rails/info/routes
http://localhost:3000/ [3]rails/info/routes
Reading from the browser is convenient if you are developing on Windows machine and grep command is not available.

