I never touch routes.rb
beyond calling map.root
to set a default route. I've always been content to use URLs of the form...
/controller/action/perhaps_an_id
and it works fine.
Does this make me a bad person? Am I missing out on something totally awesome?
What if I try to adopt RESTful design? Would that mean I have to edit routes.rb
or could I continue to pleasantly ignore it?
(I tried to read up on this topic in The Rails Way but it was unbearable.)