blob: 35d5bbea7cc8acfb9adcd51a9834b1d0f40800d3 [file] [log] [blame]
[*Generates a Graphviz graph for the state machine*]
digraph G {
node[fontname="Arial",style="filled",fillcolor="azure"]
edge[fontname="Arial"]
[%for (t in Transition.all){%]
[%=t.from.name%] -> [%=t.to.name%]
[%}%]
}