module Roda::RodaPlugins::NamedTemplates::ClassMethods

def freeze

Freeze the named templates so that there can be no thread safety issues at runtime.
def freeze
  opts[:named_templates].freeze
  super
end