# File lib/ramaze/contrib/app_graph.rb, line 45
  def write_dot
    File.open('graph.dot', 'w+') do |dot|
      dot.puts 'digraph appmap {'
      dot.puts(*@out)
      dot.puts '}'
    end
  end