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.
Files changed (184) hide show
  1. checksums.yaml +7 -0
  2. data/.gemrc +0 -0
  3. data/.gitignore +9 -0
  4. data/.travis.yml +7 -0
  5. data/AUTHORS.rdoc +33 -0
  6. data/CHANGELOG.rdoc +287 -0
  7. data/COPYING.rdoc +133 -0
  8. data/Gemfile +4 -0
  9. data/README.rdoc +206 -0
  10. data/Rakefile +71 -0
  11. data/bin/dot2ruby +91 -0
  12. data/bin/gem2gv +165 -0
  13. data/bin/git2gv +167 -0
  14. data/bin/ruby2gv +234 -0
  15. data/bin/xml2gv +96 -0
  16. data/examples/dot/JSP.dot +52 -0
  17. data/examples/dot/balanced.dot +36 -0
  18. data/examples/dot/cluster.dot +30 -0
  19. data/examples/dot/dotgraph.dot +28 -0
  20. data/examples/dot/fsm.dot +20 -0
  21. data/examples/dot/genetic.dot +118 -0
  22. data/examples/dot/hello.dot +1 -0
  23. data/examples/dot/hello_test.rb +33 -0
  24. data/examples/dot/lion_share.dot +103 -0
  25. data/examples/dot/prof.dot +150 -0
  26. data/examples/dot/psg.dot +28 -0
  27. data/examples/dot/rank.dot +6 -0
  28. data/examples/dot/sdh.dot +284 -0
  29. data/examples/dot/siblings.dot +492 -0
  30. data/examples/dot/so-sample001.gv +30 -0
  31. data/examples/dot/so-sample002.gv +33 -0
  32. data/examples/dot/so-sample003.gv +45 -0
  33. data/examples/dot/test.dot +17 -0
  34. data/examples/dot/test_parse.rb +13 -0
  35. data/examples/dot/this_crach_with_dot_2.20.dot +24 -0
  36. data/examples/dot/unix.dot +104 -0
  37. data/examples/graphml/attributes.ext.graphml +12 -0
  38. data/examples/graphml/attributes.graphml +40 -0
  39. data/examples/graphml/cluster.graphml +75 -0
  40. data/examples/graphml/failed_graph.graphml +461 -0
  41. data/examples/graphml/hyper.graphml +29 -0
  42. data/examples/graphml/nested.graphml +54 -0
  43. data/examples/graphml/port.graphml +32 -0
  44. data/examples/graphml/simple.graphml +30 -0
  45. data/examples/hello.png +0 -0
  46. data/examples/rgv/rgv.ps +125 -0
  47. data/examples/rgv/test_rgv.rb +12 -0
  48. data/examples/sample01.rb +32 -0
  49. data/examples/sample02.rb +42 -0
  50. data/examples/sample03.rb +31 -0
  51. data/examples/sample04.rb +22 -0
  52. data/examples/sample05.rb +32 -0
  53. data/examples/sample06.rb +46 -0
  54. data/examples/sample07.rb +23 -0
  55. data/examples/sample08.rb +34 -0
  56. data/examples/sample09.rb +50 -0
  57. data/examples/sample10.rb +50 -0
  58. data/examples/sample11.rb +42 -0
  59. data/examples/sample12.rb +55 -0
  60. data/examples/sample13.rb +48 -0
  61. data/examples/sample14.rb +44 -0
  62. data/examples/sample15.rb +25 -0
  63. data/examples/sample16.rb +8 -0
  64. data/examples/sample17.rb +92 -0
  65. data/examples/sample18.rb +24 -0
  66. data/examples/sample19.rb +59 -0
  67. data/examples/sample20.rb +47 -0
  68. data/examples/sample21.rb +12 -0
  69. data/examples/sample22.rb +10 -0
  70. data/examples/sample23.rb +11 -0
  71. data/examples/sample24.rb +11 -0
  72. data/examples/sample25.rb +11 -0
  73. data/examples/sample26.rb +8 -0
  74. data/examples/sample27.rb +8 -0
  75. data/examples/sample28.rb +12 -0
  76. data/examples/sample29.rb +8 -0
  77. data/examples/sample30.rb +12 -0
  78. data/examples/sample31.rb +10 -0
  79. data/examples/sample32.rb +14 -0
  80. data/examples/sample33.rb +43 -0
  81. data/examples/sample34.rb +29 -0
  82. data/examples/sample35.rb +43 -0
  83. data/examples/sample36.rb +35 -0
  84. data/examples/sample37.rb +87 -0
  85. data/examples/sample38.rb +12 -0
  86. data/examples/sample39.rb +11 -0
  87. data/examples/sample40.rb +17 -0
  88. data/examples/sample41.rb +8 -0
  89. data/examples/sample42.rb +35 -0
  90. data/examples/sample43.rb +26 -0
  91. data/examples/sample44.rb +97 -0
  92. data/examples/sample45.rb +24 -0
  93. data/examples/sample46.rb +43 -0
  94. data/examples/sample47.rb +7 -0
  95. data/examples/sample48.rb +62 -0
  96. data/examples/sample49.rb +10 -0
  97. data/examples/sample50.rb +215 -0
  98. data/examples/sample51.rb +37 -0
  99. data/examples/sample52.rb +62 -0
  100. data/examples/sample53.rb +26 -0
  101. data/examples/sample54.rb +26 -0
  102. data/examples/sample55.rb +9 -0
  103. data/examples/sample56.rb +10 -0
  104. data/examples/sample57.rb +8 -0
  105. data/examples/sample58.rb +33 -0
  106. data/examples/sample59.rb +14 -0
  107. data/examples/sample60.rb +12 -0
  108. data/examples/sample61.rb +12 -0
  109. data/examples/sample62.rb +24 -0
  110. data/examples/sample63.rb +32 -0
  111. data/examples/sample64.rb +31 -0
  112. data/examples/sample65.rb +9 -0
  113. data/examples/sample66.rb +4 -0
  114. data/examples/sample67.rb +10 -0
  115. data/examples/sample68.rb +27 -0
  116. data/examples/sample69.rb +23 -0
  117. data/examples/sample70.rb +9 -0
  118. data/examples/sample99.rb +70 -0
  119. data/examples/sdlshapes/README +2 -0
  120. data/examples/sdlshapes/sdl.ps +655 -0
  121. data/examples/sdlshapes/sdlshapes.dot +78 -0
  122. data/examples/test.xml +26 -0
  123. data/examples/theory/pert.rb +47 -0
  124. data/examples/theory/tests.rb +87 -0
  125. data/lib/ext/gvpr/dot2ruby.g +185 -0
  126. data/lib/graphviz/attrs.rb +73 -0
  127. data/lib/graphviz/constants.rb +294 -0
  128. data/lib/graphviz/core_ext.rb +64 -0
  129. data/lib/graphviz/dot2ruby.rb +59 -0
  130. data/lib/graphviz/dot_script.rb +109 -0
  131. data/lib/graphviz/dsl.rb +67 -0
  132. data/lib/graphviz/edge.rb +197 -0
  133. data/lib/graphviz/elements.rb +39 -0
  134. data/lib/graphviz/ext.rb +17 -0
  135. data/lib/graphviz/family_tree/couple.rb +63 -0
  136. data/lib/graphviz/family_tree/generation.rb +39 -0
  137. data/lib/graphviz/family_tree/person.rb +120 -0
  138. data/lib/graphviz/family_tree/sibling.rb +13 -0
  139. data/lib/graphviz/family_tree.rb +118 -0
  140. data/lib/graphviz/graphml.rb +268 -0
  141. data/lib/graphviz/math/matrix.rb +221 -0
  142. data/lib/graphviz/node.rb +160 -0
  143. data/lib/graphviz/nothugly/nothugly.xsl +321 -0
  144. data/lib/graphviz/nothugly.rb +63 -0
  145. data/lib/graphviz/theory.rb +321 -0
  146. data/lib/graphviz/types/arrow_type.rb +32 -0
  147. data/lib/graphviz/types/color.rb +58 -0
  148. data/lib/graphviz/types/color_list.rb +24 -0
  149. data/lib/graphviz/types/esc_string.rb +20 -0
  150. data/lib/graphviz/types/gv_bool.rb +49 -0
  151. data/lib/graphviz/types/gv_double.rb +32 -0
  152. data/lib/graphviz/types/html_string.rb +18 -0
  153. data/lib/graphviz/types/lbl_string.rb +22 -0
  154. data/lib/graphviz/types/rect.rb +35 -0
  155. data/lib/graphviz/types/spline_type.rb +77 -0
  156. data/lib/graphviz/types.rb +22 -0
  157. data/lib/graphviz/utils/colors.rb +1018 -0
  158. data/lib/graphviz/utils.rb +70 -0
  159. data/lib/graphviz/xml.rb +119 -0
  160. data/lib/graphviz.rb +967 -0
  161. data/lib/ruby-graphviz.rb +1 -0
  162. data/man/dot2ruby.1 +66 -0
  163. data/man/dot2ruby.1.ronn +55 -0
  164. data/man/gem2gv.1 +60 -0
  165. data/man/gem2gv.1.ronn +47 -0
  166. data/man/git2gv.1 +48 -0
  167. data/man/git2gv.1.ronn +40 -0
  168. data/man/ruby2gv.1 +60 -0
  169. data/man/ruby2gv.1.ronn +47 -0
  170. data/man/xml2gv.1 +48 -0
  171. data/man/xml2gv.1.ronn +39 -0
  172. data/ruby-graphviz.gemspec +47 -0
  173. data/setup.rb +1585 -0
  174. data/test/helper.rb +13 -0
  175. data/test/support.rb +95 -0
  176. data/test/test_dot_script.rb +47 -0
  177. data/test/test_examples.rb +151 -0
  178. data/test/test_graph.rb +115 -0
  179. data/test/test_search.rb +29 -0
  180. data/test/test_subgraph.rb +27 -0
  181. data/test/test_theory.rb +98 -0
  182. data/test/test_types.rb +65 -0
  183. data/test/test_utils_colors.rb +52 -0
  184. 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)\.
@@ -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)\.
@@ -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)\.