class RDoc::RDoc

def update_output_dir(op_dir, time, last = {})

def update_output_dir(op_dir, time, last = {})
  open output_flag_file(op_dir), "w" do |f|
    f.puts time.rfc2822
    last.each do |n, t|
      f.puts "#{n}\t#{t.rfc2822}"
    end
  end
end