I have a rails 3 template handler and would like to configure it not to use the layout. In rails2 we would do a
::ActionController::Base.exempt_from_layout :extension_name
But this method does not exist in Rails 3 any more. I did not find a place within the code where there is an option for a template engine not to run through the layout procedure.
Regards