Sha256: 2a63faaaa9217e15758b02c1824517c05063c0a9563fad0a84819a39ed331f1a

Contents?: true

Size: 425 Bytes

Versions: 15

Compression:

Stored size: 425 Bytes

Contents

digraph G {

	subgraph cluster_0 {
		style=filled;
		color=lightgrey;
		node [style=filled,color=white];
		a0 -> a1;
		a1 -> a2;
		a2 -> a3;
		label = "process #1";
	}

	subgraph cluster_1 {
		node [style=filled];
		b0 -> b1;
		b1 -> b2;
		b2 -> b3;
		label = "process #2";
		color=blue;
	}
	start -> a0;
	start -> b0;
	a1 -> b3;
	b2 -> a3;
	a3 -> a0;
	a3 -> end;
	b3 -> end;

	start [shape=Mdiamond];
	end [shape=Msquare];
}

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
ruby-graphviz-0.9.15 examples/dot/cluster.dot
ruby-graphviz-0.9.14 examples/dot/cluster.dot
ruby-graphviz-0.9.13 examples/dot/cluster.dot
ruby-graphviz-0.9.12 examples/dot/cluster.dot
ruby-graphviz-0.9.11 examples/dot/cluster.dot
ruby-graphviz-0.9.10 examples/dot/cluster.dot
ruby-graphviz-0.9.9 examples/dot/cluster.dot
ruby-graphviz-0.9.8 examples/dot/cluster.dot
ruby-graphviz-0.9.7 examples/dot/cluster.dot
ruby-graphviz-0.9.6 examples/dot/cluster.dot
ruby-graphviz-0.9.5 examples/dot/cluster.dot
ruby-graphviz-0.9.4 examples/dot/cluster.dot
ruby-graphviz-0.9.3 examples/dot/cluster.dot
ruby-graphviz-0.9.2 examples/dot/cluster.dot
ruby-graphviz-0.9.1 examples/dot/cluster.dot