yargi 0.1.2 → 0.2.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 (54) hide show
  1. data/CHANGELOG.md +54 -0
  2. data/Gemfile +7 -0
  3. data/Gemfile.lock +23 -0
  4. data/LICENCE.md +22 -0
  5. data/Manifest.txt +15 -0
  6. data/README.md +128 -0
  7. data/Rakefile +23 -0
  8. data/examples/fs2dot.rb +1 -1
  9. data/examples/random.rb +20 -0
  10. data/lib/yargi.rb +8 -10
  11. data/lib/yargi/decorate.rb +55 -0
  12. data/lib/yargi/digraph.rb +71 -46
  13. data/lib/yargi/digraph_edge.rb +23 -23
  14. data/lib/yargi/digraph_vertex.rb +27 -27
  15. data/lib/yargi/edge_set.rb +12 -12
  16. data/lib/yargi/element_set.rb +54 -54
  17. data/lib/yargi/loader.rb +1 -0
  18. data/lib/yargi/markable.rb +12 -12
  19. data/lib/yargi/predicate.rb +62 -43
  20. data/lib/yargi/random.rb +98 -0
  21. data/lib/yargi/version.rb +14 -0
  22. data/lib/yargi/vertex_set.rb +12 -12
  23. data/spec/spec_helper.rb +2 -0
  24. data/spec/test_decorate.rb +28 -0
  25. data/spec/test_digraph.rb +42 -0
  26. data/spec/test_random.rb +45 -0
  27. data/spec/test_yargi.rb +8 -0
  28. data/tasks/debug_mail.rake +75 -0
  29. data/tasks/debug_mail.txt +13 -0
  30. data/tasks/gem.rake +68 -0
  31. data/tasks/spec_test.rake +71 -0
  32. data/tasks/unit_test.rake +76 -0
  33. data/tasks/yard.rake +51 -0
  34. data/test/test_all.rb +1 -1
  35. data/test/yargi/README-example.gif +0 -0
  36. data/test/yargi/digraph_set_features_test.rb +14 -16
  37. data/test/yargi/digraph_test.rb +33 -33
  38. data/test/yargi/digraph_vertex_test.rb +9 -9
  39. data/test/yargi/documentation_test.rb +7 -7
  40. data/test/yargi/edge_set_test.rb +3 -3
  41. data/test/yargi/element_set_test.rb +2 -2
  42. data/test/yargi/hypotheses_test.rb +4 -4
  43. data/test/yargi/markable_test.rb +11 -11
  44. data/test/yargi/predicate_test.rb +14 -14
  45. data/test/yargi/source-sink.gif +0 -0
  46. data/test/yargi/vertex_set_test.rb +7 -7
  47. data/yargi.gemspec +187 -0
  48. data/yargi.noespec +23 -0
  49. metadata +110 -38
  50. data/CONTRIBUTE +0 -11
  51. data/LICENCE +0 -25
  52. data/README +0 -79
  53. data/examples/fs2dot.dot +0 -78
  54. data/examples/fs2dot.gif +0 -0
@@ -0,0 +1,23 @@
1
+ template-info:
2
+ name: "ruby"
3
+ version: 1.7.0
4
+ variables:
5
+ lower:
6
+ yargi
7
+ upper:
8
+ Yargi
9
+ version:
10
+ 0.2.0
11
+ summary: |-
12
+ Yet Another Ruby Graph Library
13
+ description: |-
14
+ Yargi provides a powerful mutable digraph implementation.
15
+ authors:
16
+ - {name: Bernard Lambeau, email: blambeau@gmail.com}
17
+ links:
18
+ - http://github.com/blambeau/yargi
19
+ - http://rubygems.org/gems/yargi
20
+ dependencies:
21
+ - {name: rake, version: "~> 0.9.2", groups: [development]}
22
+ - {name: rspec, version: "~> 2.8.0", groups: [development]}
23
+ - {name: wlang, version: "~> 0.10.2", groups: [development]}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yargi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.2.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,56 +9,105 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-07-19 00:00:00.000000000Z
13
- dependencies: []
14
- description: Mutable graphs made easy.
15
- email: blambeau@gmail.com
12
+ date: 2012-02-17 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: &70116659238100 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.9.2
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *70116659238100
25
+ - !ruby/object:Gem::Dependency
26
+ name: rspec
27
+ requirement: &70116659237360 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: 2.8.0
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *70116659237360
36
+ - !ruby/object:Gem::Dependency
37
+ name: wlang
38
+ requirement: &70116659236600 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: 0.10.2
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *70116659236600
47
+ description: ! 'Yargi provides a powerful mutable digraph implementation. '
48
+ email:
49
+ - blambeau@gmail.com
16
50
  executables: []
17
51
  extensions: []
18
52
  extra_rdoc_files:
19
- - README
20
- - LICENCE
21
- - CONTRIBUTE
53
+ - README.md
54
+ - CHANGELOG.md
55
+ - LICENCE.md
22
56
  files:
23
- - lib/yargi.rb
24
- - lib/yargi/element_set.rb
25
- - lib/yargi/predicate.rb
26
- - lib/yargi/digraph_edge.rb
57
+ - yargi.gemspec
58
+ - yargi.noespec
59
+ - CHANGELOG.md
60
+ - Gemfile
61
+ - Gemfile.lock
62
+ - lib/yargi/decorate.rb
27
63
  - lib/yargi/digraph.rb
64
+ - lib/yargi/digraph_edge.rb
65
+ - lib/yargi/digraph_vertex.rb
28
66
  - lib/yargi/edge_set.rb
67
+ - lib/yargi/element_set.rb
68
+ - lib/yargi/loader.rb
29
69
  - lib/yargi/markable.rb
30
- - lib/yargi/digraph_vertex.rb
70
+ - lib/yargi/predicate.rb
71
+ - lib/yargi/random.rb
72
+ - lib/yargi/version.rb
31
73
  - lib/yargi/vertex_set.rb
74
+ - lib/yargi.rb
75
+ - examples/fs2dot.rb
76
+ - examples/random.rb
77
+ - LICENCE.md
78
+ - Manifest.txt
79
+ - Rakefile
80
+ - README.md
81
+ - spec/spec_helper.rb
82
+ - spec/test_decorate.rb
83
+ - spec/test_digraph.rb
84
+ - spec/test_random.rb
85
+ - spec/test_yargi.rb
86
+ - tasks/debug_mail.rake
87
+ - tasks/debug_mail.txt
88
+ - tasks/gem.rake
89
+ - tasks/spec_test.rake
90
+ - tasks/unit_test.rake
91
+ - tasks/yard.rake
32
92
  - test/test_all.rb
33
- - test/yargi/markable_test.rb
93
+ - test/yargi/digraph_set_features_test.rb
34
94
  - test/yargi/digraph_test.rb
35
- - test/yargi/vertex_set_test.rb
36
- - test/yargi/hypotheses_test.rb
37
- - test/yargi/element_set_test.rb
38
- - test/yargi/README-example.gif
39
95
  - test/yargi/digraph_vertex_test.rb
40
- - test/yargi/README-example.dot
41
- - test/yargi/source-sink.gif
42
96
  - test/yargi/documentation_test.rb
43
- - test/yargi/source-sink.dot
44
97
  - test/yargi/edge_set_test.rb
98
+ - test/yargi/element_set_test.rb
99
+ - test/yargi/hypotheses_test.rb
100
+ - test/yargi/markable_test.rb
45
101
  - test/yargi/predicate_test.rb
46
- - test/yargi/digraph_set_features_test.rb
47
- - examples/fs2dot.gif
48
- - examples/fs2dot.dot
49
- - examples/fs2dot.rb
50
- - README
51
- - LICENCE
52
- - CONTRIBUTE
53
- homepage: https://code.chefbe.net/
102
+ - test/yargi/README-example.dot
103
+ - test/yargi/README-example.gif
104
+ - test/yargi/source-sink.dot
105
+ - test/yargi/source-sink.gif
106
+ - test/yargi/vertex_set_test.rb
107
+ homepage: http://github.com/blambeau/yargi
54
108
  licenses: []
55
109
  post_install_message:
56
- rdoc_options:
57
- - --title
58
- - Yargi - Yet Another Ruby Graph Implementation
59
- - --main
60
- - README
61
- - --line-numbers
110
+ rdoc_options: []
62
111
  require_paths:
63
112
  - lib
64
113
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -67,6 +116,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
67
116
  - - ! '>='
68
117
  - !ruby/object:Gem::Version
69
118
  version: '0'
119
+ segments:
120
+ - 0
121
+ hash: 1064034342221873319
70
122
  required_rubygems_version: !ruby/object:Gem::Requirement
71
123
  none: false
72
124
  requirements:
@@ -75,8 +127,28 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
127
  version: '0'
76
128
  requirements: []
77
129
  rubyforge_project:
78
- rubygems_version: 1.8.5
130
+ rubygems_version: 1.8.10
79
131
  signing_key:
80
132
  specification_version: 3
81
- summary: Yet Another Ruby Graph Implementation
82
- test_files: []
133
+ summary: Yet Another Ruby Graph Library
134
+ test_files:
135
+ - test/test_all.rb
136
+ - test/yargi/digraph_set_features_test.rb
137
+ - test/yargi/digraph_test.rb
138
+ - test/yargi/digraph_vertex_test.rb
139
+ - test/yargi/documentation_test.rb
140
+ - test/yargi/edge_set_test.rb
141
+ - test/yargi/element_set_test.rb
142
+ - test/yargi/hypotheses_test.rb
143
+ - test/yargi/markable_test.rb
144
+ - test/yargi/predicate_test.rb
145
+ - test/yargi/README-example.dot
146
+ - test/yargi/README-example.gif
147
+ - test/yargi/source-sink.dot
148
+ - test/yargi/source-sink.gif
149
+ - test/yargi/vertex_set_test.rb
150
+ - spec/spec_helper.rb
151
+ - spec/test_decorate.rb
152
+ - spec/test_digraph.rb
153
+ - spec/test_random.rb
154
+ - spec/test_yargi.rb
data/CONTRIBUTE DELETED
@@ -1,11 +0,0 @@
1
- = Contribute
2
-
3
- You are welcome to contribute to this graph implementation. Useful links are:
4
-
5
- [http://rubyforge.org/projects/yargi/]
6
- Rubyforge project, issue manager, forum, etc. Ideas and questions are welcome.
7
- Don't hesitate to send me an e-mail if I don't answer quickly.
8
- [http://github.com/blambeau/yargi/tree/master]
9
- Sources are on github. Fork the thing there to submit contributions. Particularly
10
- welcome: documentation reviewers, bug fixes (we love tests to prove bugs),
11
- efficiency patches, useful graph algorithms, etc.
data/LICENCE DELETED
@@ -1,25 +0,0 @@
1
- = Licence
2
-
3
- The MIT License
4
-
5
- Copyright (c) 2009 Bernard Lambeau and the University of Louvain
6
- (Universite Catholique de Louvain, Louvain-la-Neuve, Belgium)
7
-
8
- Permission is hereby granted, free of charge, to any person obtaining a copy
9
- of this software and associated documentation files (the "Software"), to deal
10
- in the Software without restriction, including without limitation the rights
11
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12
- copies of the Software, and to permit persons to whom the Software is
13
- furnished to do so, subject to the following conditions:
14
-
15
- The above copyright notice and this permission notice shall be included in
16
- all copies or substantial portions of the Software.
17
-
18
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
- THE SOFTWARE.
25
-
data/README DELETED
@@ -1,79 +0,0 @@
1
- = Yargi
2
-
3
- Yargi aims at providing a powerful mutable digraph implementation. As reflected by its name,
4
- Yargi is Yet Another (Ruby) Graph Implementation: we all have implemented a graph data structure
5
- in almost every language that we use, probably many times. The reason is probably that each
6
- implementation has its own design decisions that makes the data-structure well-designed for
7
- the task at hand, or not. Below are the main design decisions made by Yargi; this way you can
8
- easily see if Yargi fits your needs.
9
-
10
- [Digraph, Vertex and Edge] Unlike {RGL}[http://rubyforge.org/projects/rgl/], Yargi implements
11
- graph components through concrete classes, not modules (that is, in
12
- a standard-but-closed way). See Digraph, Digraph::Vertex and Digraph::Edge
13
- respectively.
14
- [Markable pattern] Graphs, vertices and edges are markable through a Hash-like API: users can
15
- install their own key/value pairs on each graph element. When keys are Symbol
16
- objects, accessors are automatically generated to provide a friendly object-oriented
17
- API (this feature must be used with care, for obvious reasons).
18
- Example:
19
- graph = Yargi::Digraph.new
20
- v1 = graph.add_vertex(:kind => "simple vertex")
21
- puts v1.kind # prints "simple vertex"
22
-
23
- [Typed elements] Graph elements (vertices and edges) can be tagged with your own modules (at creation,
24
- or later). This is the standard Yargi way to apply a 'select-and-do' feature described
25
- below.
26
- Example:
27
- module Diamond; end
28
- module Circle; end
29
- graph = Yargi::Digraph.new
30
- graph.add_n_vertices(5, Diamond) do |v,i|
31
- v[:color] = (i%2==0 ? 'red' : 'blue')
32
- end
33
- graph.add_n_vertices(5, Circle)
34
- graph.connect(Diamond, Circle) # connect all diamonds to all circles
35
-
36
- [Selection mechanism] Yargi helps you finding the nodes and edges you are looking for through a
37
- declarative selection mechanism: almost all methods that return a set of
38
- vertices or edges (Vertex.out_edges, for example) accept a predicate
39
- argument to filter the result, module names being most-used shortcuts.
40
- See Yargi::Predicate for details.
41
- Example:
42
- [... previous example continued ...]
43
- graph.vertices(Diamond) # selects all diamonds
44
- graph.vertices(Diamond){|v| v.color=='blue'} # selects blue diamonds only
45
-
46
- # Proc variant, find sink states
47
- sink = Yargi.predicate {|v| v.out_edges.empty?}
48
- graph.vertices(sink & Circle) # select all Circle sink states (no one)
49
-
50
- # Or selection
51
- is_blue = Yargi.predicate {|v| Diamond===v and v.color=='blue'}
52
- graph.vertices(is_blue|Circle) # select blue diamonds and circles
53
-
54
- [VertexSet and EdgeSet] The selection mechanism always returns arrays ... being instances
55
- of Yargi::VertexSet and Yargi::EdgeSet. These classes help you walking
56
- your graph easily.
57
- Example:
58
- [... previous example continued ...]
59
- circles = graph.vertices(Diamond).adjacent
60
- puts graph.vertices(Circle)==circles # puts true
61
-
62
- [Select-and-do] Many graph methods accept sets of vertices and edges as well as selection queries
63
- to work. Instead of connecting one source to one target at a time by passing the
64
- vertices, describe what you want and Yardi does it. Add, connect, remove, mark,
65
- reconnect many vertices/edges with a single method call !
66
- Example:
67
- graph.vertices(Diamond).add_marks(:label => '', :shape => 'diamond')
68
- graph.vertices(Circle).add_marks(:label => '', :shape => 'circle')
69
- puts graph.to_dot
70
- graph.remove_vertices(Circle) # remove all circles
71
-
72
- [Mutable graphs] Graphs here are mutable, mutable and mutable and this is the reason why Yargi
73
- exists. It comes from a project where manipulating graphs by reconnecting edges,
74
- removing vertices is the norm, not the exception.
75
- [Complexity don't care] The digraph implementation uses an incident list data structure. This graph
76
- library has not been designed with efficiency in mind so that complexities
77
- are not documented nor guaranteed. That is not to say that improvements are
78
- not welcome, of course.
79
- [Ruby minded] Because we love that language!
@@ -1,78 +0,0 @@
1
- digraph G {
2
- graph[rankdir="LR"]
3
- V0 [file="/home/blambeau/work/devel/yargi" shape="folder" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled" fillcolor="cornsilk2" label="yargi"]
4
- V1 [file="/home/blambeau/work/devel/yargi/CHANGELOG.md" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="CHANGELOG.md (0 kb)"]
5
- V2 [file="/home/blambeau/work/devel/yargi/README.md" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="README.md (3 kb)"]
6
- V3 [file="/home/blambeau/work/devel/yargi/Manifest.txt" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="Manifest.txt (0 kb)"]
7
- V4 [file="/home/blambeau/work/devel/yargi/yargi.noespec" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="yargi.noespec (1 kb)"]
8
- V5 [file="/home/blambeau/work/devel/yargi/Rakefile" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="Rakefile (0 kb)"]
9
- V6 [file="/home/blambeau/work/devel/yargi/examples" shape="folder" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled" fillcolor="gold" label="examples" fontcolor="black"]
10
- V7 [file="/home/blambeau/work/devel/yargi/examples/fs2dot.dot" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="fs2dot.dot (7 kb)"]
11
- V8 [file="/home/blambeau/work/devel/yargi/examples/fs2dot.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="fs2dot.rb (1 kb)" fillcolor="blue4" fontcolor="white"]
12
- V9 [file="/home/blambeau/work/devel/yargi/Gemfile.lock" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="Gemfile.lock (0 kb)"]
13
- V10 [file="/home/blambeau/work/devel/yargi/lib" shape="folder" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled" fillcolor="gold" label="lib" fontcolor="black"]
14
- V11 [file="/home/blambeau/work/devel/yargi/lib/yargi.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="yargi.rb (0 kb)" fillcolor="blue4" fontcolor="white"]
15
- V12 [file="/home/blambeau/work/devel/yargi/lib/yargi" shape="folder" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled" fillcolor="gold" label="yargi" fontcolor="black"]
16
- V13 [file="/home/blambeau/work/devel/yargi/lib/yargi/element_set.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="element_set.rb (4 kb)" fillcolor="blue4" fontcolor="white"]
17
- V14 [file="/home/blambeau/work/devel/yargi/lib/yargi/predicate.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="predicate.rb (4 kb)" fillcolor="blue4" fontcolor="white"]
18
- V15 [file="/home/blambeau/work/devel/yargi/lib/yargi/digraph_edge.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="digraph_edge.rb (2 kb)" fillcolor="blue4" fontcolor="white"]
19
- V16 [file="/home/blambeau/work/devel/yargi/lib/yargi/digraph.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="digraph.rb (9 kb)" fillcolor="blue4" fontcolor="white"]
20
- V17 [file="/home/blambeau/work/devel/yargi/lib/yargi/edge_set.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="edge_set.rb (1 kb)" fillcolor="blue4" fontcolor="white"]
21
- V18 [file="/home/blambeau/work/devel/yargi/lib/yargi/loader.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="loader.rb (0 kb)" fillcolor="blue4" fontcolor="white"]
22
- V19 [file="/home/blambeau/work/devel/yargi/lib/yargi/markable.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="markable.rb (1 kb)" fillcolor="blue4" fontcolor="white"]
23
- V20 [file="/home/blambeau/work/devel/yargi/lib/yargi/digraph_vertex.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="digraph_vertex.rb (2 kb)" fillcolor="blue4" fontcolor="white"]
24
- V21 [file="/home/blambeau/work/devel/yargi/lib/yargi/vertex_set.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="vertex_set.rb (1 kb)" fillcolor="blue4" fontcolor="white"]
25
- V22 [file="/home/blambeau/work/devel/yargi/lib/yargi/version.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="version.rb (0 kb)" fillcolor="blue4" fontcolor="white"]
26
- V23 [file="/home/blambeau/work/devel/yargi/LICENCE.md" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="LICENCE.md (1 kb)"]
27
- V24 [file="/home/blambeau/work/devel/yargi/spec" shape="folder" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled" fillcolor="gold" label="spec" fontcolor="black"]
28
- V25 [file="/home/blambeau/work/devel/yargi/spec/spec_helper.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="spec_helper.rb (0 kb)" fillcolor="blue4" fontcolor="white"]
29
- V26 [file="/home/blambeau/work/devel/yargi/spec/yargi_spec.rb" shape="parallelogram" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="yargi_spec.rb (0 kb)" fillcolor="blue4" fontcolor="white"]
30
- V27 [file="/home/blambeau/work/devel/yargi/yargi.gemspec" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="yargi.gemspec (6 kb)"]
31
- V28 [file="/home/blambeau/work/devel/yargi/tasks" shape="folder" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled" fillcolor="cornsilk2" label="tasks"]
32
- V29 [file="/home/blambeau/work/devel/yargi/tasks/debug_mail.rake" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="debug_mail.rake (2 kb)"]
33
- V30 [file="/home/blambeau/work/devel/yargi/tasks/yard.rake" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="yard.rake (1 kb)"]
34
- V31 [file="/home/blambeau/work/devel/yargi/tasks/gem.rake" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="gem.rake (1 kb)"]
35
- V32 [file="/home/blambeau/work/devel/yargi/tasks/spec_test.rake" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="spec_test.rake (2 kb)"]
36
- V33 [file="/home/blambeau/work/devel/yargi/tasks/unit_test.rake" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="unit_test.rake (2 kb)"]
37
- V34 [file="/home/blambeau/work/devel/yargi/tasks/debug_mail.txt" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="debug_mail.txt (0 kb)"]
38
- V35 [file="/home/blambeau/work/devel/yargi/doc" shape="folder" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled" fillcolor="white" label="doc"]
39
- V36 [file="/home/blambeau/work/devel/yargi/Gemfile" shape="box" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled, rounded" label="Gemfile (0 kb)"]
40
- V37 [file="/home/blambeau/work/devel/yargi/test" shape="folder" width="1.6" height="0.4" fontname="Arial" fontsize="16" style="filled" fillcolor="white" label="test"]
41
- V6 -> V7 []
42
- V6 -> V8 []
43
- V12 -> V13 []
44
- V12 -> V14 []
45
- V12 -> V15 []
46
- V12 -> V16 []
47
- V12 -> V17 []
48
- V12 -> V18 []
49
- V12 -> V19 []
50
- V12 -> V20 []
51
- V12 -> V21 []
52
- V12 -> V22 []
53
- V10 -> V11 []
54
- V10 -> V12 []
55
- V24 -> V25 []
56
- V24 -> V26 []
57
- V28 -> V29 []
58
- V28 -> V30 []
59
- V28 -> V31 []
60
- V28 -> V32 []
61
- V28 -> V33 []
62
- V28 -> V34 []
63
- V0 -> V1 []
64
- V0 -> V2 []
65
- V0 -> V3 []
66
- V0 -> V4 []
67
- V0 -> V5 []
68
- V0 -> V6 []
69
- V0 -> V9 []
70
- V0 -> V10 []
71
- V0 -> V23 []
72
- V0 -> V24 []
73
- V0 -> V27 []
74
- V0 -> V28 []
75
- V0 -> V35 []
76
- V0 -> V36 []
77
- V0 -> V37 []
78
- }
Binary file