Hi All, I'm trying to use yard for documenting ruby code. It is generating decent documentation when I run yard doc, although, I also want to generate diagrams. I'm getting the following stdout when I'm running "yard graph" and it doesn't generate any diagrams, any suggestions on what it could be? I saw some discussions online that installing previous versions worked for them, although, I'm still facing issues:
digraph yard {
graph [rankdir=BT rank=sink outputMode=nodesfirst packMode="graph" splines=true];
node [shape=record rank=sink rankType=sink];
Root [label="{root root}" rank=sink];
subgraph cluster_ {
label = ""; labelloc=b;
Xyz [label="{module Xyz}" rank=sink];
subgraph cluster_Xyz {
label = "Xyz"; labelloc=b;
Xyz_Abc [label="{module Abc}" rank=sink];
subgraph cluster_Xyz_Abc {
label = "Abc"; labelloc=b;
Xyz_Abc_Def [label="{module Def}" rank=sink];
subgraph cluster_Xyz_Abc_Def {
label = "Def"; labelloc=b;
}
}
}
}
}
Thanks!
Srikar