By default, Rails associates an action with a template having the same name as the name of the action and residing in a directory with the same name as the name of the controller.
Is there some way from within the action that I can change this behavior? I'm thinking that I could probably change it from within routes.rb; but, I'd really rather do it from within the action so that when I look at the action code I can clearly see what I did rather than spending time scratching my head and wondering why my action is displaying a non-default template.
Thanks for any input.
... doug