/usr/share/doc/ruby-graphviz/examples/sample24.rb is in ruby-graphviz 1.2.3-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/usr/bin/ruby
$:.unshift( "../lib" );
require "graphviz"
GraphViz::new( "G" ) { |g|
g.hello << g.world
g.bonjour - g.monde
g.hola > g.mundo
g.holla >> g.welt
}.output( :path => "/usr/local/bin", :png => "#{$0}.png" )
|