Running commands from context of a view

Have you seen this: http://snippets.dzone.com/posts/show/1799

Fred

Frederick Cheung wrote: [quote] Have you seen this: http://snippets.dzone.com/posts/show/1799 [/quote]

That allows you to run view helper methods... specifically I'd like to be able to access view helper methods + route helpers edit_projects
and be able to use url_for and link_to.

link_to is a view helper as is one version of url_for. You just need
to figure out which modules to include (hint: search through the rails
code base for the functions you would like to be accessible)

Fred