"new_#{controller}_path" gives me, as you would imagine:
http://mysite.com/new_orders_path
http://mysite.com/new_subscriptions_path
and so on
how do make a named path do this?
===================
What exactly are you trying to get? Are you trying to call the named route
new_<controller>_path? If so try, send("new_#{controller}_path") or whatnot.
Dave