Ruby-Graphwiz does not render png
- by auralbee
I just tried the ruby-graphwiz gem (http://github.com/glejeune/Ruby-Graphviz). I followed the instructions (installed Graphwiz, gem and dependencies) and tried the example from the Github page. Unfortunately I am not able to render any output image (png,dot).
# Create a new graph
g = GraphViz.new( :G, :type => :digraph )
# Create two nodes
hello = g.add_node( "Hello" )
world = g.add_node( "World" )
# Create an edge between the two nodes
g.add_edge( hello, world )
# Generate output image
g.output( :png => "hello_world.png" )
When I run the skript from the console I get no error message but also no output as expected.
What could be the problem? Folders have read/write access for everybody.
Thanks in advance. By the way, I´m working on a Mac (Leopard 10.6).