module ActionView::Template::Handlers

def unregister_template_handler(*extensions)

Opposite to register_template_handler.
def unregister_template_handler(*extensions)
  extensions.each do |extension|
    handler = @@template_handlers.delete extension.to_sym
    @@default_template_handlers = nil if @@default_template_handlers == handler
  end
  @@template_extensions = nil
end