Routes

resources :walkers = 7 routes, one line

Open config/routes.rb and you'll find exactly one line the scaffold added: resources :walkers. That single line generates all 7 RESTful routes β€” the same 7 actions the controller got. You never write get "/walkers", post "/walkers", and five more lines by hand; resources is that whole table, compressed to one word.