# File lib/cgikit/project/converter.rb, line 34
    def convert_dir( path )
      converter = []
      Dir.foreach(path) do |file|
        unless /\A\./ === file then
          if result = convert(File.join(path, file)) then
            converter.concat(result)
          end
        end
      end
      converter
    end