Hi all, I need to run some code after the body of an action method executes, but before the view rendering code executes. Here''s the current execution order and where I want to put my filter in it: - before filters - action method >> my filter - view rendering - after filters Has anyone done anything similar? Any ideas?
> I need to run some code after the body of an action method executes, but > before the view rendering code executes.Ok, here''s what I did: def render *args do_my_filter_things super end Now I''m sure this will fail in some cases, so I''m still open to new ideas.