# File lib/rest_htmlprinter.rb, line 34 def do_finish puts "Written #{@index.path}" @xml_examples.each do |f,b| if !XmlFile.exist?( f ) $stderr.puts "XML Example '#{f}' is missing." else XmlFile.copy f, @output_dir end end @xml_schemas.each do |f,b| if !XmlFile.exist?( f ) $stderr.puts "XML Schema '#{f}' is missing." else XmlFile.copy f, @output_dir end end @index.close end