I know this is a minor issue, but why, if you use scaffolding in RoR, can you use lines like \'new_model name here_path\' in link tags, but without using scaffolding, I
Scaffolding sets up resource routes in the routes.rb file. The resource routes are what give you the path and url helpers. When you don't use scaffolding the routes aren't added, you must do it by hand.
Resource Routes can be added like so:
map.resources :models
where :models is the plural name of one of your models.
One way to check your routes and paths is to run:
rake routes
It outputs all your routes and paths.