module Rattler::Util::GraphViz

GraphViz provides utilities to build GraphViz objects representing trees of nodes.

Public Class Methods

digraph(root, name='G') click to toggle source

(see DigraphBuilder.digraph)

# File lib/rattler/util/graphviz.rb, line 13
def self.digraph(root, name='G')
  DigraphBuilder.digraph(root, name)
end