After running rails generate controller home index in my Rails application, I see this line in routes.rb
get "home/index"
What does this line do? When I removed it, I didn't observe any difference it makes.
|
After running
What does this line do? When I removed it, I didn't observe any difference it makes. |
||||
|
|
|
see the Rails Routing page for more info but... It adds, to the routing table, an entry to direct a
To the It is a shorthand notation for
To see what other routes your application has available, run the following from a terminal while inside your projects directory
|
||||
|
|