Sha256: f542b8851fc9d5eab92bcd7ab127764ecee71a43cf123ff605bab971050e3e80
Contents?: true
Size: 1001 Bytes
Versions: 12
Compression:
Stored size: 1001 Bytes
Contents
$:.unshift( "../lib" ); require "graphviz" g = GraphViz::new( "structs" ) g.node["shape"] = "plaintext" g.add_node( "HTML" ) g.add_node( "struct1", "label" => '<<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0"> <TR> <TD>left</TD> <TD PORT="f1">mid dle</TD> <TD PORT="f2">right</TD> </TR> </TABLE>>' ) g.add_node( "struct2", "label" => '<<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0"> <TR><TD PORT="f0">one</TD><TD>two</TD></TR> </TABLE>>' ) g.add_node( "struct3", "label" => '<<TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4"> <TR> <TD ROWSPAN="3">hello<BR/>world</TD> <TD COLSPAN="3">b</TD> <TD ROWSPAN="3">g</TD> <TD ROWSPAN="3">h</TD> </TR> <TR> <TD>c</TD><TD PORT="here">d</TD><TD>e</TD> </TR> <TR> <TD COLSPAN="3">f</TD> </TR> </TABLE>>' ) g.add_edge( {"struct1" => :f1}, {"struct2" => :f0} ) g.add_edge( {"struct1" => :f2}, {"struct3" => :here} ) g.add_edge( "HTML", "struct1" ) g.output( :path => '/usr/local/bin/', :png => "#{$0}.png" )
Version data entries
12 entries across 12 versions & 1 rubygems