# File lib/cgikit/package.rb, line 92
    def load_config
      path = File.join(@path, CONFIG_FILE)
      return unless FileTest.exist?(path)
      config = nil
      str = nil
      open(path) { |f| str = f.read }
      Thread.start(str) do
        $SAFE = 4
        config = eval(str)
      end.join
      config.each do |key, value|
        self.__send__("#{key}=", value)
      end
    end