module Roda::RodaPlugins::AutoloadHashBranches::ClassMethods

def freeze

Eagerly load all hash branches when freezing the application.
def freeze
  opts.delete(:autoload_hash_branch_files).each{|file| require file} unless opts.frozen?
  super
end