Tagged Questions

1
vote
1answer
2k views

Rails 3 Routes: Named routes. “No route matches”

So I'm getting a 'No route matches' error, and being new to Rails 3 (and Rails in general), I really don't know what the problem is. Here are the pertinent routes: resources :users #... match ...
0
votes
1answer
57 views

Is it possible to specify a named route within a resourceful route?

I'm just upgrading my app to Rails 3 and as I have to rewrite my routing anyway, I'm taking some time to improve my named routes. I have an invoices controller which has a trash action ...
0
votes
2answers
535 views

In Ruby on Rails, routes.rb, if map.something will create something_path and something_url, does map.connect create something like that too?

In Ruby on Rails, routes.rb, if we create a "named route" map.something ":a/:b", :controller => 'foobar' it will also create something_path and something_url which are two methods usable in the ...