It start with one, then two and it keeps on growing. The number of routes in your ruby on rails project can be a reflection of how complex your project is becoming. And if you are curious like me to know how many routes your project has, just run the following command in your rails console.

1
::Rails.application.routes.routes.size

To run without starting your rails console:

1
rails r 'puts ::Rails.application.routes.routes.size'