File Coverage

blib/lib/Task/Graph/Writer.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Task::Graph::Writer;
2              
3             # Pragmas.
4 2     2   29899 use strict;
  2         4  
  2         44  
5 2     2   8 use warnings;
  2         3  
  2         65  
6              
7             # Version.
8             our $VERSION = 0.01;
9              
10             1;
11              
12             __END__
13              
14             =pod
15              
16             =encoding utf8
17              
18             =head1 NAME
19              
20             Task::Graph::Writer - Install the Graph::Writer modules.
21              
22             =head1 SYNOPSIS
23              
24             cpanm Task::Graph::Writer
25              
26             =head1 SEE ALSO
27              
28             =over
29              
30             =item L<Graph::Writer>
31              
32             base class for Graph file format writers
33              
34             =item L<Graph::Writer::Cytoscape>
35              
36             Write a directed graph out as Cytoscape competible input file
37              
38             =item L<Graph::Writer::DSM>
39              
40             draw graph as a DSM matrix
41              
42             =item L<Graph::Writer::DSM::HTML>
43              
44             draw graph as a DSM matrix in HTML format
45              
46             =item L<Graph::Writer::daVinci>
47              
48             write out directed graph in daVinci format
49              
50             =item L<Graph::Writer::Dot>
51              
52             write out directed graph in Dot format
53              
54             =item L<Graph::Writer::DrGeo>
55              
56             Save the graph output DrGeo scheme script.
57              
58             =item L<Graph::Writer::Graph6>
59              
60             write Graph in graph6 format
61              
62             =item L<Graph::Writer::GraphViz>
63              
64             GraphViz Writer for Graph object
65              
66             =item L<Graph::Writer::HTK>
67              
68             write a perl Graph out as an HTK lattice file
69              
70             =item L<Graph::Writer::Sparse6>
71              
72             write Graph in sparse6 format
73              
74             =item L<Graph::Writer::TGXML>
75              
76             write out directed graph as TouchGraph LinkBrowser XML
77              
78             =item L<Graph::Writer::VCG>
79              
80             write out directed graph in VCG format
81              
82             =item L<Graph::Writer::XML>
83              
84             write out directed graph as XML
85              
86             =back
87              
88             =head1 REPOSITORY
89              
90             L<https://github.com/tupinek/Task-Graph-Writer>
91              
92             =head1 AUTHOR
93              
94             Michal Å paček L<mailto:skim@cpan.org>
95              
96             L<http://skim.cz>
97              
98             =head1 LICENSE AND COPYRIGHT
99              
100             © 2015 Michal Å paček
101             Artistic License
102             BSD 2-Clause License
103              
104             =head1 VERSION
105              
106             0.01
107              
108             =cut