summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2009-05-30 11:14:01 +0200
committerfranck cuny <franck@lumberjaph.net>2009-05-30 11:14:01 +0200
commitb96d3c0287b46c5fd30a8c084c28a20723f1e967 (patch)
tree7708fd30e0429f720bb278f68e18d795942f644b /bin
downloadcatalystx-dispatcher-asgraph-b96d3c0287b46c5fd30a8c084c28a20723f1e967.tar.gz
import
Diffstat (limited to 'bin')
-rw-r--r--bin/catalyst_graph_dispatcher.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/catalyst_graph_dispatcher.pl b/bin/catalyst_graph_dispatcher.pl
new file mode 100644
index 0000000..e8fc5c1
--- /dev/null
+++ b/bin/catalyst_graph_dispatcher.pl
@@ -0,0 +1,11 @@
+#!/usr/bin/perl -w
+use strict;
+use lib('/home/franck/code/git/CatalystX-Dispatcher-AsGraph/lib');
+use CatalystX::Dispatcher::AsGraph;
+
+my $graph = CatalystX::Dispatcher::AsGraph->new_with_options();
+$graph->run;
+if ( open( my $png, '|-', 'dot -Tpng -o ' . $graph->output ) ) {
+    print $png $graph->graph->as_graphviz;
+    close($png);
+}