ruby-graphviz_c 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gemrc +0 -0
- data/.gitignore +9 -0
- data/.travis.yml +7 -0
- data/AUTHORS.rdoc +33 -0
- data/CHANGELOG.rdoc +287 -0
- data/COPYING.rdoc +133 -0
- data/Gemfile +4 -0
- data/README.rdoc +206 -0
- data/Rakefile +71 -0
- data/bin/dot2ruby +91 -0
- data/bin/gem2gv +165 -0
- data/bin/git2gv +167 -0
- data/bin/ruby2gv +234 -0
- data/bin/xml2gv +96 -0
- data/examples/dot/JSP.dot +52 -0
- data/examples/dot/balanced.dot +36 -0
- data/examples/dot/cluster.dot +30 -0
- data/examples/dot/dotgraph.dot +28 -0
- data/examples/dot/fsm.dot +20 -0
- data/examples/dot/genetic.dot +118 -0
- data/examples/dot/hello.dot +1 -0
- data/examples/dot/hello_test.rb +33 -0
- data/examples/dot/lion_share.dot +103 -0
- data/examples/dot/prof.dot +150 -0
- data/examples/dot/psg.dot +28 -0
- data/examples/dot/rank.dot +6 -0
- data/examples/dot/sdh.dot +284 -0
- data/examples/dot/siblings.dot +492 -0
- data/examples/dot/so-sample001.gv +30 -0
- data/examples/dot/so-sample002.gv +33 -0
- data/examples/dot/so-sample003.gv +45 -0
- data/examples/dot/test.dot +17 -0
- data/examples/dot/test_parse.rb +13 -0
- data/examples/dot/this_crach_with_dot_2.20.dot +24 -0
- data/examples/dot/unix.dot +104 -0
- data/examples/graphml/attributes.ext.graphml +12 -0
- data/examples/graphml/attributes.graphml +40 -0
- data/examples/graphml/cluster.graphml +75 -0
- data/examples/graphml/failed_graph.graphml +461 -0
- data/examples/graphml/hyper.graphml +29 -0
- data/examples/graphml/nested.graphml +54 -0
- data/examples/graphml/port.graphml +32 -0
- data/examples/graphml/simple.graphml +30 -0
- data/examples/hello.png +0 -0
- data/examples/rgv/rgv.ps +125 -0
- data/examples/rgv/test_rgv.rb +12 -0
- data/examples/sample01.rb +32 -0
- data/examples/sample02.rb +42 -0
- data/examples/sample03.rb +31 -0
- data/examples/sample04.rb +22 -0
- data/examples/sample05.rb +32 -0
- data/examples/sample06.rb +46 -0
- data/examples/sample07.rb +23 -0
- data/examples/sample08.rb +34 -0
- data/examples/sample09.rb +50 -0
- data/examples/sample10.rb +50 -0
- data/examples/sample11.rb +42 -0
- data/examples/sample12.rb +55 -0
- data/examples/sample13.rb +48 -0
- data/examples/sample14.rb +44 -0
- data/examples/sample15.rb +25 -0
- data/examples/sample16.rb +8 -0
- data/examples/sample17.rb +92 -0
- data/examples/sample18.rb +24 -0
- data/examples/sample19.rb +59 -0
- data/examples/sample20.rb +47 -0
- data/examples/sample21.rb +12 -0
- data/examples/sample22.rb +10 -0
- data/examples/sample23.rb +11 -0
- data/examples/sample24.rb +11 -0
- data/examples/sample25.rb +11 -0
- data/examples/sample26.rb +8 -0
- data/examples/sample27.rb +8 -0
- data/examples/sample28.rb +12 -0
- data/examples/sample29.rb +8 -0
- data/examples/sample30.rb +12 -0
- data/examples/sample31.rb +10 -0
- data/examples/sample32.rb +14 -0
- data/examples/sample33.rb +43 -0
- data/examples/sample34.rb +29 -0
- data/examples/sample35.rb +43 -0
- data/examples/sample36.rb +35 -0
- data/examples/sample37.rb +87 -0
- data/examples/sample38.rb +12 -0
- data/examples/sample39.rb +11 -0
- data/examples/sample40.rb +17 -0
- data/examples/sample41.rb +8 -0
- data/examples/sample42.rb +35 -0
- data/examples/sample43.rb +26 -0
- data/examples/sample44.rb +97 -0
- data/examples/sample45.rb +24 -0
- data/examples/sample46.rb +43 -0
- data/examples/sample47.rb +7 -0
- data/examples/sample48.rb +62 -0
- data/examples/sample49.rb +10 -0
- data/examples/sample50.rb +215 -0
- data/examples/sample51.rb +37 -0
- data/examples/sample52.rb +62 -0
- data/examples/sample53.rb +26 -0
- data/examples/sample54.rb +26 -0
- data/examples/sample55.rb +9 -0
- data/examples/sample56.rb +10 -0
- data/examples/sample57.rb +8 -0
- data/examples/sample58.rb +33 -0
- data/examples/sample59.rb +14 -0
- data/examples/sample60.rb +12 -0
- data/examples/sample61.rb +12 -0
- data/examples/sample62.rb +24 -0
- data/examples/sample63.rb +32 -0
- data/examples/sample64.rb +31 -0
- data/examples/sample65.rb +9 -0
- data/examples/sample66.rb +4 -0
- data/examples/sample67.rb +10 -0
- data/examples/sample68.rb +27 -0
- data/examples/sample69.rb +23 -0
- data/examples/sample70.rb +9 -0
- data/examples/sample99.rb +70 -0
- data/examples/sdlshapes/README +2 -0
- data/examples/sdlshapes/sdl.ps +655 -0
- data/examples/sdlshapes/sdlshapes.dot +78 -0
- data/examples/test.xml +26 -0
- data/examples/theory/pert.rb +47 -0
- data/examples/theory/tests.rb +87 -0
- data/lib/ext/gvpr/dot2ruby.g +185 -0
- data/lib/graphviz/attrs.rb +73 -0
- data/lib/graphviz/constants.rb +294 -0
- data/lib/graphviz/core_ext.rb +64 -0
- data/lib/graphviz/dot2ruby.rb +59 -0
- data/lib/graphviz/dot_script.rb +109 -0
- data/lib/graphviz/dsl.rb +67 -0
- data/lib/graphviz/edge.rb +197 -0
- data/lib/graphviz/elements.rb +39 -0
- data/lib/graphviz/ext.rb +17 -0
- data/lib/graphviz/family_tree/couple.rb +63 -0
- data/lib/graphviz/family_tree/generation.rb +39 -0
- data/lib/graphviz/family_tree/person.rb +120 -0
- data/lib/graphviz/family_tree/sibling.rb +13 -0
- data/lib/graphviz/family_tree.rb +118 -0
- data/lib/graphviz/graphml.rb +268 -0
- data/lib/graphviz/math/matrix.rb +221 -0
- data/lib/graphviz/node.rb +160 -0
- data/lib/graphviz/nothugly/nothugly.xsl +321 -0
- data/lib/graphviz/nothugly.rb +63 -0
- data/lib/graphviz/theory.rb +321 -0
- data/lib/graphviz/types/arrow_type.rb +32 -0
- data/lib/graphviz/types/color.rb +58 -0
- data/lib/graphviz/types/color_list.rb +24 -0
- data/lib/graphviz/types/esc_string.rb +20 -0
- data/lib/graphviz/types/gv_bool.rb +49 -0
- data/lib/graphviz/types/gv_double.rb +32 -0
- data/lib/graphviz/types/html_string.rb +18 -0
- data/lib/graphviz/types/lbl_string.rb +22 -0
- data/lib/graphviz/types/rect.rb +35 -0
- data/lib/graphviz/types/spline_type.rb +77 -0
- data/lib/graphviz/types.rb +22 -0
- data/lib/graphviz/utils/colors.rb +1018 -0
- data/lib/graphviz/utils.rb +70 -0
- data/lib/graphviz/xml.rb +119 -0
- data/lib/graphviz.rb +967 -0
- data/lib/ruby-graphviz.rb +1 -0
- data/man/dot2ruby.1 +66 -0
- data/man/dot2ruby.1.ronn +55 -0
- data/man/gem2gv.1 +60 -0
- data/man/gem2gv.1.ronn +47 -0
- data/man/git2gv.1 +48 -0
- data/man/git2gv.1.ronn +40 -0
- data/man/ruby2gv.1 +60 -0
- data/man/ruby2gv.1.ronn +47 -0
- data/man/xml2gv.1 +48 -0
- data/man/xml2gv.1.ronn +39 -0
- data/ruby-graphviz.gemspec +47 -0
- data/setup.rb +1585 -0
- data/test/helper.rb +13 -0
- data/test/support.rb +95 -0
- data/test/test_dot_script.rb +47 -0
- data/test/test_examples.rb +151 -0
- data/test/test_graph.rb +115 -0
- data/test/test_search.rb +29 -0
- data/test/test_subgraph.rb +27 -0
- data/test/test_theory.rb +98 -0
- data/test/test_types.rb +65 -0
- data/test/test_utils_colors.rb +52 -0
- metadata +301 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'graphviz'
|
data/man/dot2ruby.1
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
3
|
+
.
|
|
4
|
+
.TH "DOT2RUBY" "1" "April 2013" "" ""
|
|
5
|
+
.
|
|
6
|
+
.SH "NAME"
|
|
7
|
+
\fBdot2ruby\fR \- create a ruby script from a graphviz script
|
|
8
|
+
.
|
|
9
|
+
.SH "SYNOPSIS"
|
|
10
|
+
\fBdot2ruby\fR [\fB\-o\fR\fIfile\fR] [\fB\-T\fR\fIformat\fR] [\fB\-h\fR] [\fB\-V\fR] \fIscript\fR
|
|
11
|
+
.
|
|
12
|
+
.SH "DESCRIPTION"
|
|
13
|
+
\fBdot2ruby\fR is a tool that allows you to create a ruby script from a graphviz script\.
|
|
14
|
+
.
|
|
15
|
+
.P
|
|
16
|
+
See </usr/share/doc/ruby\-graphviz/> for more details\.
|
|
17
|
+
.
|
|
18
|
+
.SH "OPTIONS"
|
|
19
|
+
.
|
|
20
|
+
.TP
|
|
21
|
+
\fB\-o\fR, \fB\-\-output\-file\fR [\fIfile\fR]
|
|
22
|
+
Path to output image file (default STDOUT)
|
|
23
|
+
.
|
|
24
|
+
.TP
|
|
25
|
+
\fB\-T\fR, \fB\-\-output\-format\fR [\fIformat\fR]
|
|
26
|
+
Output format (default: png)
|
|
27
|
+
.
|
|
28
|
+
.TP
|
|
29
|
+
\fB\-p\fR, \fB\-\-path\fR
|
|
30
|
+
Graphviz path
|
|
31
|
+
.
|
|
32
|
+
.TP
|
|
33
|
+
\fB\-V\fR, \fB\-\-version\fR
|
|
34
|
+
Show version
|
|
35
|
+
.
|
|
36
|
+
.TP
|
|
37
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
38
|
+
Show this usage message
|
|
39
|
+
.
|
|
40
|
+
.SH "EXAMPLE"
|
|
41
|
+
.
|
|
42
|
+
.nf
|
|
43
|
+
|
|
44
|
+
$ cat hello\.dot
|
|
45
|
+
digraph G {Hello\->World;}
|
|
46
|
+
|
|
47
|
+
$ dot2ruby hello\.dot
|
|
48
|
+
# This code was generated by dot2ruby\.g
|
|
49
|
+
|
|
50
|
+
require \'rubygems\'
|
|
51
|
+
require \'graphviz\'
|
|
52
|
+
graph_g = GraphViz\.digraph( "G" ) { |graph_g|
|
|
53
|
+
graph_g[:bb] = \'0,0,70,108\'
|
|
54
|
+
node_hello = graph_g\.add_nodes( "Hello", :height => \'0\.5\', :label => \'\eN\', :pos => \'35,90\', :width => \'0\.88889\' )
|
|
55
|
+
graph_g\.add_edges( "Hello", "World", :pos => \'e,35,36\.413 35,71\.831 35,64\.131 35,54\.974 35,46\.417\' )
|
|
56
|
+
node_world = graph_g\.add_nodes( "World", :height => \'0\.5\', :label => \'\eN\', :pos => \'35,18\', :width => \'0\.97222\' )
|
|
57
|
+
}
|
|
58
|
+
puts graph_g\.output( :canon => String )
|
|
59
|
+
.
|
|
60
|
+
.fi
|
|
61
|
+
.
|
|
62
|
+
.SH "AUTHOR"
|
|
63
|
+
Copyright 2004\-2013 Gregoire Lejeune
|
|
64
|
+
.
|
|
65
|
+
.P
|
|
66
|
+
This manual page is written by Praveen Arimbrathodiyl \fIpraveen@debian\.org\fR for Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd)\.
|
data/man/dot2ruby.1.ronn
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
dot2ruby(1) - create a ruby script from a graphviz script
|
|
2
|
+
=========================================================
|
|
3
|
+
|
|
4
|
+
## SYNOPSIS
|
|
5
|
+
|
|
6
|
+
`dot2ruby` [`-o`<file>] [`-T`<format>] [`-h`] [`-V`] _script_
|
|
7
|
+
|
|
8
|
+
## DESCRIPTION
|
|
9
|
+
|
|
10
|
+
**dot2ruby** is a tool that allows you to create a ruby script from
|
|
11
|
+
a graphviz script.
|
|
12
|
+
|
|
13
|
+
See </usr/share/doc/ruby-graphviz/> for more details.
|
|
14
|
+
|
|
15
|
+
## OPTIONS
|
|
16
|
+
|
|
17
|
+
* `-o`, `--output-file` [<file>]:
|
|
18
|
+
Path to output image file (default STDOUT)
|
|
19
|
+
|
|
20
|
+
* `-T`, `--output-format` [<format>]:
|
|
21
|
+
Output format (default: png)
|
|
22
|
+
|
|
23
|
+
* `-p`, `--path`:
|
|
24
|
+
Graphviz path
|
|
25
|
+
|
|
26
|
+
* `-V`, `--version`:
|
|
27
|
+
Show version
|
|
28
|
+
|
|
29
|
+
* `-h`, `--help`:
|
|
30
|
+
Show this usage message
|
|
31
|
+
|
|
32
|
+
## EXAMPLE
|
|
33
|
+
|
|
34
|
+
$ cat hello.dot
|
|
35
|
+
digraph G {Hello->World;}
|
|
36
|
+
|
|
37
|
+
$ dot2ruby hello.dot
|
|
38
|
+
# This code was generated by dot2ruby.g
|
|
39
|
+
|
|
40
|
+
require 'rubygems'
|
|
41
|
+
require 'graphviz'
|
|
42
|
+
graph_g = GraphViz.digraph( "G" ) { |graph_g|
|
|
43
|
+
graph_g[:bb] = '0,0,70,108'
|
|
44
|
+
node_hello = graph_g.add_nodes( "Hello", :height => '0.5', :label => '\N', :pos => '35,90', :width => '0.88889' )
|
|
45
|
+
graph_g.add_edges( "Hello", "World", :pos => 'e,35,36.413 35,71.831 35,64.131 35,54.974 35,46.417' )
|
|
46
|
+
node_world = graph_g.add_nodes( "World", :height => '0.5', :label => '\N', :pos => '35,18', :width => '0.97222' )
|
|
47
|
+
}
|
|
48
|
+
puts graph_g.output( :canon => String )
|
|
49
|
+
|
|
50
|
+
## AUTHOR
|
|
51
|
+
|
|
52
|
+
Copyright 2004-2013 Gregoire Lejeune
|
|
53
|
+
|
|
54
|
+
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
|
|
55
|
+
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|
data/man/gem2gv.1
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
3
|
+
.
|
|
4
|
+
.TH "GEM2GV" "1" "April 2013" "" ""
|
|
5
|
+
.
|
|
6
|
+
.SH "NAME"
|
|
7
|
+
\fBgem2gv\fR \- create a dependency graph between gems
|
|
8
|
+
.
|
|
9
|
+
.SH "SYNOPSIS"
|
|
10
|
+
\fBgem2gv\fR [\fB\-T\fR\fIformat\fR] [\fB\-o\fR\fIfile\fR] [\fB\-h\fR] [\fB\-V\fR] \fIgemname\fR
|
|
11
|
+
.
|
|
12
|
+
.SH "DESCRIPTION"
|
|
13
|
+
\fBgem2gv\fR is a tool that allows you to create a dependency graph between gems\.
|
|
14
|
+
.
|
|
15
|
+
.P
|
|
16
|
+
See </usr/share/doc/ruby\-graphviz/> for more details\.
|
|
17
|
+
.
|
|
18
|
+
.SH "OPTIONS"
|
|
19
|
+
.
|
|
20
|
+
.TP
|
|
21
|
+
\fB\-T\fR, \fB\-\-output\-format\fR [\fIformat\fR]
|
|
22
|
+
Output format (default: png)
|
|
23
|
+
.
|
|
24
|
+
.TP
|
|
25
|
+
\fB\-o\fR, \fB\-\-output\-file\fR [\fIfile\fR]
|
|
26
|
+
Path to output image file (default: STDOUT)
|
|
27
|
+
.
|
|
28
|
+
.TP
|
|
29
|
+
\fB\-p\fR, \fB\-\-path\fR
|
|
30
|
+
Graphviz path
|
|
31
|
+
.
|
|
32
|
+
.TP
|
|
33
|
+
\fB\-u\fR, \fB\-\-use\fR [\fIPROGRAM\fR]
|
|
34
|
+
Program to use (default: dot)
|
|
35
|
+
.
|
|
36
|
+
.TP
|
|
37
|
+
\fB\-s\fR, \fB\-\-stop\fR \fILIB\fR[,\fILIB\fR[, \.\.\.]]
|
|
38
|
+
Stop on libs
|
|
39
|
+
.
|
|
40
|
+
.TP
|
|
41
|
+
\fB\-V\fR, \fB\-\-version\fR
|
|
42
|
+
Show version
|
|
43
|
+
.
|
|
44
|
+
.TP
|
|
45
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
46
|
+
Show this usage message
|
|
47
|
+
.
|
|
48
|
+
.SH "EXAMPLE"
|
|
49
|
+
.
|
|
50
|
+
.nf
|
|
51
|
+
|
|
52
|
+
gem2gv \-Tpng \-oruby\-graphviz\.png ruby\-graphviz
|
|
53
|
+
.
|
|
54
|
+
.fi
|
|
55
|
+
.
|
|
56
|
+
.SH "AUTHOR"
|
|
57
|
+
Copyright 2004\-2013 Gregoire Lejeune
|
|
58
|
+
.
|
|
59
|
+
.P
|
|
60
|
+
This manual page is written by Praveen Arimbrathodiyl \fIpraveen@debian\.org\fR for Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd)\.
|
data/man/gem2gv.1.ronn
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
gem2gv(1) - create a dependency graph between gems
|
|
2
|
+
==================================================
|
|
3
|
+
|
|
4
|
+
## SYNOPSIS
|
|
5
|
+
|
|
6
|
+
`gem2gv` [`-T`<format>] [`-o`<file>] [`-h`] [`-V`] <gemname>
|
|
7
|
+
|
|
8
|
+
## DESCRIPTION
|
|
9
|
+
|
|
10
|
+
`gem2gv` is a tool that allows you to create a dependency graph
|
|
11
|
+
between gems.
|
|
12
|
+
|
|
13
|
+
See </usr/share/doc/ruby-graphviz/> for more details.
|
|
14
|
+
|
|
15
|
+
## OPTIONS
|
|
16
|
+
|
|
17
|
+
* `-T`, `--output-format` [<format>]:
|
|
18
|
+
Output format (default: png)
|
|
19
|
+
|
|
20
|
+
* `-o`, `--output-file` [<file>]:
|
|
21
|
+
Path to output image file (default: STDOUT)
|
|
22
|
+
|
|
23
|
+
* `-p`, `--path`:
|
|
24
|
+
Graphviz path
|
|
25
|
+
|
|
26
|
+
* `-u`, `--use` [<PROGRAM>]:
|
|
27
|
+
Program to use (default: dot)
|
|
28
|
+
|
|
29
|
+
* `-s`, `--stop` <LIB>[,<LIB>[, ...]]:
|
|
30
|
+
Stop on libs
|
|
31
|
+
|
|
32
|
+
* `-V`, `--version`:
|
|
33
|
+
Show version
|
|
34
|
+
|
|
35
|
+
* `-h`, `--help`:
|
|
36
|
+
Show this usage message
|
|
37
|
+
|
|
38
|
+
## EXAMPLE
|
|
39
|
+
|
|
40
|
+
gem2gv -Tpng -oruby-graphviz.png ruby-graphviz
|
|
41
|
+
|
|
42
|
+
## AUTHOR
|
|
43
|
+
|
|
44
|
+
Copyright 2004-2013 Gregoire Lejeune
|
|
45
|
+
|
|
46
|
+
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
|
|
47
|
+
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|
data/man/git2gv.1
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
3
|
+
.
|
|
4
|
+
.TH "GIT2GV" "1" "April 2013" "" ""
|
|
5
|
+
.
|
|
6
|
+
.SH "NAME"
|
|
7
|
+
\fBgit2gv\fR \- show your git commits graphically
|
|
8
|
+
.
|
|
9
|
+
.SH "SYNOPSIS"
|
|
10
|
+
\fBgit2gv\fR [\fB\-T\fR\fIformat\fR] [\fB\-o\fR\fIfile\fR] [\fB\-h\fR] [\fB\-V\fR]
|
|
11
|
+
.
|
|
12
|
+
.SH "DESCRIPTION"
|
|
13
|
+
\fBgit2gv\fR is a tool that allows you to show your git commits graphically\.
|
|
14
|
+
.
|
|
15
|
+
.P
|
|
16
|
+
See </usr/share/doc/ruby\-graphviz/> for more details\.
|
|
17
|
+
.
|
|
18
|
+
.SH "OPTIONS"
|
|
19
|
+
.
|
|
20
|
+
.TP
|
|
21
|
+
\fB\-T\fR, \fB\-\-output\-format\fR [\fIformat\fR]
|
|
22
|
+
Output format (default: png)
|
|
23
|
+
.
|
|
24
|
+
.TP
|
|
25
|
+
\fB\-\-nothugly\fR
|
|
26
|
+
Use nothugly if SVG output
|
|
27
|
+
.
|
|
28
|
+
.TP
|
|
29
|
+
\fB\-o\fR, \fB\-\-output\-file\fR [\fIfile\fR]
|
|
30
|
+
Path to output image file (default: STDOUT)
|
|
31
|
+
.
|
|
32
|
+
.TP
|
|
33
|
+
\fB\-p\fR, \fB\-\-path\fR
|
|
34
|
+
Graphviz path
|
|
35
|
+
.
|
|
36
|
+
.TP
|
|
37
|
+
\fB\-V\fR, \fB\-\-version\fR
|
|
38
|
+
Show version
|
|
39
|
+
.
|
|
40
|
+
.TP
|
|
41
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
42
|
+
Show this usage message
|
|
43
|
+
.
|
|
44
|
+
.SH "AUTHOR"
|
|
45
|
+
Copyright 2004\-2013 Gregoire Lejeune
|
|
46
|
+
.
|
|
47
|
+
.P
|
|
48
|
+
This manual page is written by Praveen Arimbrathodiyl \fIpraveen@debian\.org\fR for Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd)\.
|
data/man/git2gv.1.ronn
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
git2gv(1) - show your git commits graphically
|
|
2
|
+
=============================================
|
|
3
|
+
|
|
4
|
+
## SYNOPSIS
|
|
5
|
+
|
|
6
|
+
`git2gv` [`-T`<format>] [`-o`<file>] [`-h`] [`-V`]
|
|
7
|
+
|
|
8
|
+
## DESCRIPTION
|
|
9
|
+
|
|
10
|
+
`git2gv` is a tool that allows you to show your git commits
|
|
11
|
+
graphically.
|
|
12
|
+
|
|
13
|
+
See </usr/share/doc/ruby-graphviz/> for more details.
|
|
14
|
+
|
|
15
|
+
## OPTIONS
|
|
16
|
+
|
|
17
|
+
* `-T`, `--output-format` [<format>]:
|
|
18
|
+
Output format (default: png)
|
|
19
|
+
|
|
20
|
+
* `--nothugly`:
|
|
21
|
+
Use nothugly if SVG output
|
|
22
|
+
|
|
23
|
+
* `-o`, `--output-file` [<file>]:
|
|
24
|
+
Path to output image file (default: STDOUT)
|
|
25
|
+
|
|
26
|
+
* `-p`, `--path`:
|
|
27
|
+
Graphviz path
|
|
28
|
+
|
|
29
|
+
* `-V`, `--version`:
|
|
30
|
+
Show version
|
|
31
|
+
|
|
32
|
+
* `-h`, `--help`:
|
|
33
|
+
Show this usage message
|
|
34
|
+
|
|
35
|
+
## AUTHOR
|
|
36
|
+
|
|
37
|
+
Copyright 2004-2013 Gregoire Lejeune
|
|
38
|
+
|
|
39
|
+
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
|
|
40
|
+
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|
data/man/ruby2gv.1
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
3
|
+
.
|
|
4
|
+
.TH "RUBY2GV" "1" "April 2013" "" ""
|
|
5
|
+
.
|
|
6
|
+
.SH "NAME"
|
|
7
|
+
\fBruby2gv\fR \- create a dependency graph from a ruby script
|
|
8
|
+
.
|
|
9
|
+
.SH "SYNOPSIS"
|
|
10
|
+
\fBruby2gv\fR [\fB\-T\fR\fIformat\fR] [\fB\-o\fR\fIfile\fR] [\fB\-h\fR] [\fB\-V\fR] \fIscript\fR
|
|
11
|
+
.
|
|
12
|
+
.SH "DESCRIPTION"
|
|
13
|
+
\fBruby2gv\fR is a simple tool that allows you to create a dependency graph from a ruby script\.
|
|
14
|
+
.
|
|
15
|
+
.P
|
|
16
|
+
See </usr/share/doc/ruby\-graphviz/> for more details\.
|
|
17
|
+
.
|
|
18
|
+
.SH "OPTIONS"
|
|
19
|
+
.
|
|
20
|
+
.TP
|
|
21
|
+
\fB\-T\fR, \fB\-\-output\-format\fR [\fIformat\fR]
|
|
22
|
+
Output format (default: png)
|
|
23
|
+
.
|
|
24
|
+
.TP
|
|
25
|
+
\fB\-o\fR, \fB\-\-output\-file\fR [\fIfile\fR]
|
|
26
|
+
Path to output image file (default: STDOUT)
|
|
27
|
+
.
|
|
28
|
+
.TP
|
|
29
|
+
\fB\-p\fR, \fB\-\-path\fR
|
|
30
|
+
Graphviz path
|
|
31
|
+
.
|
|
32
|
+
.TP
|
|
33
|
+
\fB\-u\fR, \fB\-\-use\fR [\fIPROGRAM\fR]
|
|
34
|
+
Program to use (default: dot)
|
|
35
|
+
.
|
|
36
|
+
.TP
|
|
37
|
+
\fB\-s\fR, \fB\-\-stop\fR \fILIB\fR[,\fILIB\fR[, \.\.\.]]
|
|
38
|
+
Stop on libs
|
|
39
|
+
.
|
|
40
|
+
.TP
|
|
41
|
+
\fB\-V\fR, \fB\-\-version\fR
|
|
42
|
+
Show version
|
|
43
|
+
.
|
|
44
|
+
.TP
|
|
45
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
46
|
+
Show this usage message
|
|
47
|
+
.
|
|
48
|
+
.SH "EXAMPLE"
|
|
49
|
+
.
|
|
50
|
+
.nf
|
|
51
|
+
|
|
52
|
+
ruby2gv \-Tpng \-oruby2gv\.png /usr/bin/ruby2gv
|
|
53
|
+
.
|
|
54
|
+
.fi
|
|
55
|
+
.
|
|
56
|
+
.SH "AUTHOR"
|
|
57
|
+
Copyright 2004\-2013 Gregoire Lejeune
|
|
58
|
+
.
|
|
59
|
+
.P
|
|
60
|
+
This manual page is written by Praveen Arimbrathodiyl \fIpraveen@debian\.org\fR for Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd)\.
|
data/man/ruby2gv.1.ronn
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
ruby2gv(1) - create a dependency graph from a ruby script
|
|
2
|
+
=========================================================
|
|
3
|
+
|
|
4
|
+
## SYNOPSIS
|
|
5
|
+
|
|
6
|
+
`ruby2gv` [`-T`<format>] [`-o`<file>] [`-h`] [`-V`] _script_
|
|
7
|
+
|
|
8
|
+
## DESCRIPTION
|
|
9
|
+
|
|
10
|
+
`ruby2gv` is a simple tool that allows you to create a dependency graph
|
|
11
|
+
from a ruby script.
|
|
12
|
+
|
|
13
|
+
See </usr/share/doc/ruby-graphviz/> for more details.
|
|
14
|
+
|
|
15
|
+
## OPTIONS
|
|
16
|
+
|
|
17
|
+
* `-T`, `--output-format` [<format>]:
|
|
18
|
+
Output format (default: png)
|
|
19
|
+
|
|
20
|
+
* `-o`, `--output-file` [<file>]:
|
|
21
|
+
Path to output image file (default: STDOUT)
|
|
22
|
+
|
|
23
|
+
* `-p`, `--path`:
|
|
24
|
+
Graphviz path
|
|
25
|
+
|
|
26
|
+
* `-u`, `--use` [<PROGRAM>]:
|
|
27
|
+
Program to use (default: dot)
|
|
28
|
+
|
|
29
|
+
* `-s`, `--stop` <LIB>[,<LIB>[, ...]]:
|
|
30
|
+
Stop on libs
|
|
31
|
+
|
|
32
|
+
* `-V`, `--version`:
|
|
33
|
+
Show version
|
|
34
|
+
|
|
35
|
+
* `-h`, `--help`:
|
|
36
|
+
Show this usage message
|
|
37
|
+
|
|
38
|
+
## EXAMPLE
|
|
39
|
+
|
|
40
|
+
ruby2gv -Tpng -oruby2gv.png /usr/bin/ruby2gv
|
|
41
|
+
|
|
42
|
+
## AUTHOR
|
|
43
|
+
|
|
44
|
+
Copyright 2004-2013 Gregoire Lejeune
|
|
45
|
+
|
|
46
|
+
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
|
|
47
|
+
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|
data/man/xml2gv.1
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
.\" generated with Ronn/v0.7.3
|
|
2
|
+
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
3
|
+
.
|
|
4
|
+
.TH "XML2GV" "1" "April 2013" "" ""
|
|
5
|
+
.
|
|
6
|
+
.SH "NAME"
|
|
7
|
+
\fBxml2gv\fR \- show your xml files graphically
|
|
8
|
+
.
|
|
9
|
+
.SH "SYNOPSIS"
|
|
10
|
+
\fBxml2gv\fR [\fB\-T\fR\fIformat\fR] [\fB\-o\fR\fIfile\fR] [\fB\-h\fR] [\fB\-V\fR] \fIscript\fR
|
|
11
|
+
.
|
|
12
|
+
.SH "DESCRIPTION"
|
|
13
|
+
\fBxml2gv\fR is a tool that allows you to show a xml file as a graph\.
|
|
14
|
+
.
|
|
15
|
+
.P
|
|
16
|
+
See </usr/share/doc/ruby\-graphviz/> for more details\.
|
|
17
|
+
.
|
|
18
|
+
.SH "OPTIONS"
|
|
19
|
+
.
|
|
20
|
+
.TP
|
|
21
|
+
\fB\-T\fR, \fB\-\-output\-format\fR [\fIformat\fR]
|
|
22
|
+
Output format (default: png)
|
|
23
|
+
.
|
|
24
|
+
.TP
|
|
25
|
+
\fB\-o\fR, \fB\-\-output\-file\fR [\fIfile\fR]
|
|
26
|
+
Output file (default: STDOUT)
|
|
27
|
+
.
|
|
28
|
+
.TP
|
|
29
|
+
\fB\-p\fR, \fB\-\-path\fR
|
|
30
|
+
Graphviz path
|
|
31
|
+
.
|
|
32
|
+
.TP
|
|
33
|
+
\fB\-u\fR, \fB\-\-use\fR [\fIPROGRAM\fR]
|
|
34
|
+
Program to use (default: dot)
|
|
35
|
+
.
|
|
36
|
+
.TP
|
|
37
|
+
\fB\-V\fR, \fB\-\-version\fR
|
|
38
|
+
Show version
|
|
39
|
+
.
|
|
40
|
+
.TP
|
|
41
|
+
\fB\-h\fR, \fB\-\-help\fR
|
|
42
|
+
Show this usage message
|
|
43
|
+
.
|
|
44
|
+
.SH "AUTHOR"
|
|
45
|
+
Copyright 2004\-2013 Gregoire Lejeune
|
|
46
|
+
.
|
|
47
|
+
.P
|
|
48
|
+
This manual page is written by Praveen Arimbrathodiyl \fIpraveen@debian\.org\fR for Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd)\.
|