We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
require "graphviz" # ok master = GraphViz::new(:G) cl1 = master.add_graph('cluster_cl1') puts master.inspect # digraph G { # subgraph cluster_cl1 { # } # } # add_graph fails when passed a GraphViz object master = GraphViz::new(:G) cl1 = GraphViz::new('cluster_cl1') master.add_graph cl1 puts master.inspect # digraph G { # digraph cluster_cl1 { # } # }
I believe that the output of the two parts should be equivalent, i.e. cluster_cl1 should be subgraph instead of digraph.
cluster_cl1
subgraph
digraph
The text was updated successfully, but these errors were encountered:
Issue #48
324b44f
add_graph fails when passed a GraphViz object
Test Issue #48
b7a73f0
Corrected in 1.0.7
Sorry, something went wrong.
Excellent work, thanks for the quick fix!
No branches or pull requests
I believe that the output of the two parts should be equivalent, i.e.
cluster_cl1
should besubgraph
instead ofdigraph
.The text was updated successfully, but these errors were encountered: