If you run "rake routes" in your project directory you'll see what
routes are available. Also, the singular vs plural question needs to
be considered here.
Typically:
The model has a singular name - models/path.rb
The controller has a plural name - controllers/paths_controller.rb
The view has a plural name - views/paths/edit.html.erb
So a url for your controller would typically be: paths_url
"rake routes" really becomes your friend here as you are able to take
a look at everything that will work. Trust me, just run it and look
over the output to see where you might be going wrong.