rgl 0.2.3 → 0.3.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.
- data/ChangeLog +340 -86
- data/README +31 -19
- data/Rakefile +43 -36
- data/examples/{insel.rb → insel-der-tausend-gefahren.rb} +53 -4
- data/lib/rgl/adjacency.rb +29 -8
- data/lib/rgl/base.rb +50 -116
- data/lib/rgl/bidirectional.rb +40 -0
- data/lib/rgl/dot.rb +7 -7
- data/lib/rgl/enumerable_ext.rb +13 -0
- data/lib/rgl/graphxml.rb +14 -26
- data/lib/rgl/mutable.rb +29 -1
- data/lib/rgl/rdot.rb +293 -175
- data/rakelib/dep_graph.rake +30 -0
- data/tests/TestComponents.rb +2 -4
- data/tests/TestCycles.rb +61 -0
- data/tests/TestDirectedGraph.rb +64 -59
- data/tests/TestDot.rb +18 -0
- data/tests/TestEdge.rb +23 -22
- data/tests/TestGraph.rb +55 -0
- data/tests/TestGraphXML.rb +2 -2
- data/tests/TestRdot.rb +815 -0
- data/tests/TestTransitiveClosure.rb +1 -4
- data/tests/TestTraversal.rb +1 -3
- data/tests/test_helper.rb +7 -0
- metadata +148 -138
- data/TAGS +0 -253
- data/examples/codegraph +0 -238
- data/examples/debgraph.rb +0 -118
- data/examples/graph.dot +0 -768
data/ChangeLog
CHANGED
@@ -1,147 +1,401 @@
|
|
1
|
-
|
1
|
+
2008-03-02 18:16 javanthropus
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
* lib/rgl/rdot.rb: IDs and labels must be converted to strings
|
4
|
+
before processing
|
5
5
|
|
6
|
-
|
7
|
-
Fixed bug in DirectedGraph#reverse reported by Kaspar Schiess. Isolated
|
8
|
-
vertices were not treated correctly.
|
6
|
+
2008-03-02 17:45 javanthropus
|
9
7
|
|
10
|
-
|
8
|
+
* lib/rgl/rdot.rb, tests/TestRdot.rb: Added documentation for
|
9
|
+
rdot.rb and full test coverage
|
11
10
|
|
12
|
-
|
11
|
+
2008-03-02 15:19 monora
|
13
12
|
|
14
|
-
|
13
|
+
* README: Removed dead link to rubygarden.com
|
15
14
|
|
16
|
-
|
15
|
+
2008-03-02 15:09 monora
|
17
16
|
|
18
|
-
|
17
|
+
* ChangeLog, README, Rakefile (utags: REL_0_3_0): Polishing before
|
18
|
+
0.3.0 release
|
19
19
|
|
20
|
-
|
21
|
-
Fixed some formatting issues and smoothed documentation. Thanks to Rich Morin.
|
20
|
+
2008-03-02 13:45 monora
|
22
21
|
|
23
|
-
|
22
|
+
* lib/rgl/: adjacency.rb, rdot.rb (utags: REL_0_3_0): Fixed
|
23
|
+
warnings generated by Ruby Dev Tools
|
24
24
|
|
25
|
-
|
26
|
-
Polished documentation
|
25
|
+
2008-03-02 07:57 javanthropus
|
27
26
|
|
28
|
-
|
29
|
-
|
27
|
+
* Rakefile, lib/rgl/graphxml.rb (tags: REL_0_3_0),
|
28
|
+
tests/TestGraphXML.rb (tags: REL_0_3_0): Change the way GraphML
|
29
|
+
support is added to the MutableGraph module such that the
|
30
|
+
interface is cleaner and documented
|
30
31
|
|
31
|
-
|
32
|
+
2008-03-01 20:12 javanthropus
|
32
33
|
|
33
|
-
|
34
|
+
* lib/rgl/base.rb, tests/TestGraph.rb: Polish the documentation for
|
35
|
+
and expand the test coverage of RGL::Graph
|
34
36
|
|
35
|
-
|
37
|
+
2008-02-27 19:44 monora
|
36
38
|
|
37
|
-
|
38
|
-
Fixed comments, removed warnings in ruby1.9 -w by adding attr_readers, told emacs to use tab-width 4 on these files
|
39
|
+
* README: Added link to coverage page
|
39
40
|
|
40
|
-
|
41
|
+
2008-02-26 06:01 javanthropus
|
41
42
|
|
42
|
-
|
43
|
-
|
43
|
+
* lib/rgl/dot.rb, lib/rgl/rdot.rb, tests/TestDot.rb,
|
44
|
+
tests/TestRdot.rb: All IDs for DOT objects, including names,
|
45
|
+
options, and values, are now automatically quoted as necessary
|
46
|
+
according to the rules documented at
|
47
|
+
http://www.graphviz.org/doc/info/lang.html and
|
48
|
+
http://www.graphviz.org/Documentation/dotguide.pdf.
|
44
49
|
|
45
|
-
|
50
|
+
Labels are handled specially in order to account for \l, \r, and
|
51
|
+
\n sequences but are otherwise treated the same as other options.
|
46
52
|
|
47
|
-
|
53
|
+
New tests were added to confirm proper function.
|
48
54
|
|
49
|
-
|
55
|
+
Some changes were made in order to remove explicit quotes from
|
56
|
+
labels which are no longer necessary.
|
50
57
|
|
51
|
-
|
58
|
+
2008-02-17 20:15 monora
|
52
59
|
|
53
|
-
|
60
|
+
* lib/rgl/enumerable_ext.rb: Removed backwards compatability method
|
61
|
+
inject. Ruby > 1.8 supports it out of the box.
|
54
62
|
|
55
|
-
|
63
|
+
2008-02-17 20:07 monora
|
56
64
|
|
57
|
-
|
65
|
+
* tests/: TestEdge.rb, TestDirectedGraph.rb, TestGraph.rb: Improved
|
66
|
+
test coverage
|
58
67
|
|
59
|
-
|
60
|
-
- port to ruby 1.8
|
61
|
-
- compiler warnings removed
|
62
|
-
- set_up -> setup in testfiles
|
68
|
+
2008-02-17 20:06 monora
|
63
69
|
|
64
|
-
|
70
|
+
* lib/rgl/adjacency.rb: fixed bug in edgelist_class
|
65
71
|
|
66
|
-
|
67
|
-
Name-attribute of DOTNode has to be escaped by ".
|
72
|
+
2008-02-17 17:59 monora
|
68
73
|
|
69
|
-
|
74
|
+
* Rakefile: - added coverage task - fixed BUG #2674 - added
|
75
|
+
changelog task - use jamis buck rdoc template
|
70
76
|
|
71
|
-
|
72
|
-
Use knus compatibility library for Ruby 1.8 esp. for set.rb and inject.
|
77
|
+
2008-02-17 17:45 monora
|
73
78
|
|
74
|
-
|
79
|
+
* lib/rgl/base.rb: Changed Version to 0.3.0
|
75
80
|
|
76
|
-
|
77
|
-
Use knus compatibility library for Ruby 1.8 esp. for set.rb and inject.
|
81
|
+
2008-02-17 09:09 javanthropus
|
78
82
|
|
79
|
-
|
83
|
+
* lib/rgl/rdot.rb: DOTSimpleElement provides no useful function, so
|
84
|
+
remove it
|
80
85
|
|
81
|
-
|
82
|
-
to_dot_graph now also outputs vertices.
|
86
|
+
2008-02-17 09:08 javanthropus
|
83
87
|
|
84
|
-
*
|
88
|
+
* tests/TestRdot.rb: Test that setting only the name for a DOTNode
|
89
|
+
does NOT set the label
|
85
90
|
|
86
|
-
|
91
|
+
2008-02-17 08:58 javanthropus
|
87
92
|
|
88
|
-
*
|
93
|
+
* lib/rgl/rdot.rb, tests/TestRdot.rb: Add support for the Mrecord
|
94
|
+
shape to DOTNode. Rewrite DOTNode#to_s to be easier to
|
95
|
+
understand. #Rewrite DOTPort to allow for nesting ports.
|
89
96
|
|
90
|
-
|
91
|
-
Fixed typo.
|
97
|
+
2008-02-17 03:20 javanthropus
|
92
98
|
|
93
|
-
|
99
|
+
* lib/rgl/rdot.rb, tests/TestRdot.rb: BUG 17964: DOTElement no
|
100
|
+
longer sets the label unless the user explicitly sets one
|
94
101
|
|
95
|
-
|
96
|
-
Changed NameError to NoVertexError.
|
102
|
+
2008-02-17 02:56 javanthropus
|
97
103
|
|
98
|
-
|
104
|
+
* tests/TestRdot.rb: Fix a DOTEdge test which was actually
|
105
|
+
retesting DOTNode
|
99
106
|
|
100
|
-
|
101
|
-
to_dot_graph now also outputs vertices.
|
107
|
+
2008-02-16 19:58 javanthropus
|
102
108
|
|
103
|
-
* lib/rgl/
|
109
|
+
* lib/rgl/rdot.rb, tests/TestRdot.rb: BUG #17962: Subgraphs must be
|
110
|
+
identified by a "subgraph" header rather than a "graph" header
|
111
|
+
|
112
|
+
2008-02-13 22:32 monora
|
113
|
+
|
114
|
+
* tests/TestRdot.rb: Fixed typo
|
115
|
+
|
116
|
+
2008-02-13 22:20 monora
|
117
|
+
|
118
|
+
* doc/jamis.rb: Added template from Jamis Buck for rdoc. Looks
|
119
|
+
better.
|
120
|
+
|
121
|
+
2008-02-12 23:37 monora
|
122
|
+
|
123
|
+
* lib/rgl/rdot.rb: BUG #17969: Applied patch from Jeremy Bopp.
|
124
|
+
Thanks.
|
125
|
+
|
126
|
+
2008-02-12 22:29 monora
|
127
|
+
|
128
|
+
* README: fixed require in topsort example added delicious links
|
129
|
+
|
130
|
+
2007-12-11 21:04 wsdng
|
131
|
+
|
132
|
+
* lib/rgl/rdot.rb, tests/TestRdot.rb: fixed [#16125] DOT::DOTNode
|
133
|
+
produces wrong DOT syntax
|
134
|
+
|
135
|
+
2007-12-11 00:21 wsdng
|
136
|
+
|
137
|
+
* tests/: TestDot.rb, TestRdot.rb: reproduced [#16125] DOT::DOTNode
|
138
|
+
produces wrong DOT syntax
|
139
|
+
|
140
|
+
2007-06-20 22:43 monora
|
141
|
+
|
142
|
+
* lib/rgl/base.rb, rakelib/dep_graph.rake: Fixed typo
|
143
|
+
|
144
|
+
2006-04-19 21:32 monora
|
145
|
+
|
146
|
+
* rakelib/dep_graph.rake: - Use write_to_graphic_file instead of
|
147
|
+
dotty (dotty crashes) - omit added task from vertices
|
148
|
+
|
149
|
+
2006-04-12 23:45 monora
|
150
|
+
|
151
|
+
* rakelib/dep_graph.rake: Initial checkin
|
152
|
+
|
153
|
+
2006-04-12 23:40 monora
|
154
|
+
|
155
|
+
* lib/rgl/bidirectional.rb: Moved to module RGL
|
156
|
+
|
157
|
+
2006-04-12 23:36 monora
|
158
|
+
|
159
|
+
* lib/rgl/base.rb: Moved BidirectionalGraph to own file.
|
160
|
+
|
161
|
+
2006-04-12 23:31 monora
|
162
|
+
|
163
|
+
* lib/rgl/: base.rb, edge.rb, graph.rb: - Merged changes from Shawn
|
164
|
+
- dont want to split base.rb
|
165
|
+
|
166
|
+
2006-04-12 23:27 monora
|
167
|
+
|
168
|
+
* tests/: TestCycles.rb, TestGraph.rb, test_helper.rb,
|
169
|
+
TestComponents.rb, TestTransitiveClosure.rb, TestTraversal.rb: -
|
170
|
+
Merged changes from Shawn - added test_helper
|
171
|
+
|
172
|
+
2006-04-12 23:23 monora
|
173
|
+
|
174
|
+
* lib/rgl/adjacency.rb: - Merged changes from Shawn - implemented
|
175
|
+
clone support (initialize_copy)
|
176
|
+
|
177
|
+
2006-04-12 23:20 monora
|
178
|
+
|
179
|
+
* lib/rgl/mutable.rb: Use clone instead of self.class.new(self)
|
180
|
+
|
181
|
+
2006-04-12 23:19 monora
|
182
|
+
|
183
|
+
* lib/rgl/enumerable_ext.rb: Do not extend system class Array. Only
|
184
|
+
used for testing.
|
185
|
+
|
186
|
+
2006-03-28 19:10 monora
|
187
|
+
|
188
|
+
* lib/rgl/dot.rb: Added links to graphviz.
|
189
|
+
|
190
|
+
2006-03-20 02:06 spgarbet
|
191
|
+
|
192
|
+
* lib/rgl/adjacency.rb, lib/rgl/base.rb, lib/rgl/bidirectional.rb,
|
193
|
+
lib/rgl/edge.rb, lib/rgl/enumerable_ext.rb, lib/rgl/graph.rb,
|
194
|
+
lib/rgl/mutable.rb, tests/TestComponents.rb, tests/TestCycles.rb,
|
195
|
+
tests/TestGraph.rb, tests/TestTransitiveClosure.rb,
|
196
|
+
tests/TestTraversal.rb: Added equality test for graphs, added
|
197
|
+
cycle locating. Modified initialize to allow duplicating and
|
198
|
+
merging of graphs. Split base into various subfiles. Added test
|
199
|
+
cases for changes. Fixed problem with GraphXML.
|
200
|
+
|
201
|
+
2006-03-09 23:25 monora
|
202
|
+
|
203
|
+
* lib/rgl/base.rb: Fixed typo Bug #2875
|
204
|
+
|
205
|
+
2006-03-03 22:28 monora
|
206
|
+
|
207
|
+
* .cvsignore, .project: We now use Eclipse-RDT
|
208
|
+
|
209
|
+
2005-09-18 14:08 monora
|
210
|
+
|
211
|
+
* tests/TestComponents.rb (tags: PRE_CHECKIN_JC): Fixed required
|
212
|
+
files.
|
213
|
+
|
214
|
+
2005-09-17 18:27 monora
|
215
|
+
|
216
|
+
* lib/rgl/base.rb (tags: PRE_CHECKIN_JC): Documentation corrected.
|
217
|
+
|
218
|
+
2005-09-17 18:25 monora
|
219
|
+
|
220
|
+
* README (tags: PRE_CHECKIN_JC): Added link to delicious.
|
104
221
|
|
105
|
-
|
222
|
+
2005-04-12 20:59 monora
|
106
223
|
|
107
|
-
*
|
224
|
+
* Rakefile (tags: PRE_CHECKIN_JC): corrected homepage link in
|
225
|
+
gemspec
|
108
226
|
|
109
|
-
|
110
|
-
Fixed typo.
|
227
|
+
2005-04-12 20:50 monora
|
111
228
|
|
112
|
-
|
229
|
+
* Makefile: rake is better than make
|
113
230
|
|
114
|
-
|
115
|
-
Changed NameError to NoVertexError.
|
231
|
+
2005-04-12 20:35 monora
|
116
232
|
|
117
|
-
|
233
|
+
* README (tags: REL_0_2_3): updated copyright notice
|
234
|
+
|
235
|
+
2005-04-12 20:32 monora
|
236
|
+
|
237
|
+
* examples/examples.rb (tags: PRE_CHECKIN_JC, REL_0_2_3): Added
|
238
|
+
doc.
|
239
|
+
|
240
|
+
2005-04-12 18:23 monora
|
241
|
+
|
242
|
+
* README: Fixed some outdated links.
|
243
|
+
|
244
|
+
2005-04-05 19:54 monora
|
245
|
+
|
246
|
+
* ChangeLog (tags: PRE_CHECKIN_JC, REL_0_2_3): New entries
|
247
|
+
generated
|
248
|
+
|
249
|
+
2005-03-30 21:27 monora
|
250
|
+
|
251
|
+
* tests/TestDirectedGraph.rb (tags: PRE_CHECKIN_JC, REL_0_2_3):
|
252
|
+
Added test for isolated vertices in DirectedGraph#reverse.
|
253
|
+
|
254
|
+
2005-03-30 21:25 monora
|
255
|
+
|
256
|
+
* lib/rgl/adjacency.rb (tags: PRE_CHECKIN_JC, REL_0_2_3): Fixed bug
|
257
|
+
in DirectedGraph#reverse reported by Kaspar Schiess. Isolated
|
258
|
+
vertices were not treated correctly.
|
259
|
+
|
260
|
+
2005-03-26 15:06 wsdng
|
261
|
+
|
262
|
+
* lib/rgl/rdot.rb (tags: PRE_CHECKIN_JC, REL_0_2_3): added node and
|
263
|
+
edge attributes
|
264
|
+
|
265
|
+
2005-03-22 22:31 monora
|
266
|
+
|
267
|
+
* Rakefile (tags: REL_0_2_3): Fixed autorequire to work with gem
|
268
|
+
version 0.8.8
|
269
|
+
|
270
|
+
2005-02-04 22:41 monora
|
271
|
+
|
272
|
+
* README, lib/rgl/adjacency.rb, lib/rgl/base.rb (tags: REL_0_2_3),
|
273
|
+
lib/rgl/connected_components.rb (tags: PRE_CHECKIN_JC,
|
274
|
+
REL_0_2_3), lib/rgl/dot.rb (tags: PRE_CHECKIN_JC, REL_0_2_3),
|
275
|
+
lib/rgl/graphxml.rb (tags: PRE_CHECKIN_JC, REL_0_2_3),
|
276
|
+
lib/rgl/implicit.rb (tags: PRE_CHECKIN_JC, REL_0_2_3),
|
277
|
+
lib/rgl/mutable.rb (tags: PRE_CHECKIN_JC, REL_0_2_3),
|
278
|
+
lib/rgl/rdot.rb, lib/rgl/topsort.rb (tags: PRE_CHECKIN_JC,
|
279
|
+
REL_0_2_3), lib/rgl/transitiv_closure.rb (tags: PRE_CHECKIN_JC,
|
280
|
+
REL_0_2_3), lib/rgl/traversal.rb (tags: PRE_CHECKIN_JC,
|
281
|
+
REL_0_2_3): Fixed some formatting issues and smoothed
|
282
|
+
documentation. Thanks to Rich Morin.
|
283
|
+
|
284
|
+
2004-12-13 23:33 monora
|
285
|
+
|
286
|
+
* Makefile, README, Rakefile, lib/rgl/base.rb, lib/rgl/graphxml.rb,
|
287
|
+
lib/rgl/implicit.rb, lib/rgl/traversal.rb: Polished documentation
|
288
|
+
|
289
|
+
2004-12-13 21:07 monora
|
290
|
+
|
291
|
+
* lib/rgl/adjacency.rb, tests/TestDirectedGraph.rb,
|
292
|
+
tests/TestUnDirectedGraph.rb (tags: PRE_CHECKIN_JC, REL_0_2_3):
|
293
|
+
Fixed bug in Graph#reverse reported by Sascha Ebach.
|
294
|
+
|
295
|
+
2004-12-12 19:09 cyent
|
296
|
+
|
297
|
+
* tests/TestGraphXML.rb: Fixed bug in relative path
|
298
|
+
|
299
|
+
2004-12-12 19:08 cyent
|
300
|
+
|
301
|
+
* tests/TestDirectedGraph.rb: Added test_random
|
302
|
+
|
303
|
+
2004-12-12 19:07 cyent
|
304
|
+
|
305
|
+
* lib/rgl/: adjacency.rb, base.rb, connected_components.rb,
|
306
|
+
rdot.rb: Fixed comments, removed warnings in ruby1.9 -w by adding
|
307
|
+
attr_readers, told emacs to use tab-width 4 on these files
|
308
|
+
|
309
|
+
2004-12-11 23:46 monora
|
310
|
+
|
311
|
+
* README (tags: REL_0_2_2), Rakefile (tags: REL_0_2_2),
|
312
|
+
examples/examples.rb (tags: REL_0_2_2), lib/stream.rb,
|
313
|
+
lib/rgl/base.rb (tags: REL_0_2_2), lib/rgl/graphxml.rb (tags:
|
314
|
+
REL_0_2_2), lib/rgl/traversal.rb (tags: REL_0_2_2),
|
315
|
+
tests/TestGraphXML.rb (tags: PRE_CHECKIN_JC, REL_0_2_3,
|
316
|
+
REL_0_2_2), tests/_TestGraphXML.rb: Added gem packaging.
|
317
|
+
|
318
|
+
2004-10-08 15:15 monora
|
319
|
+
|
320
|
+
* tests/runtests.rb: In new testframework not needed.
|
321
|
+
|
322
|
+
2004-10-08 15:14 monora
|
323
|
+
|
324
|
+
* lib/utils.rb: Code move to base.rb
|
325
|
+
|
326
|
+
2004-10-06 22:11 monora
|
327
|
+
|
328
|
+
* lib/rgl/base.rb: Code from utils.rb included
|
329
|
+
|
330
|
+
2004-10-06 22:09 monora
|
331
|
+
|
332
|
+
* Rakefile: First start for gem preparation
|
333
|
+
|
334
|
+
2003-07-30 21:50 monora
|
335
|
+
|
336
|
+
* lib/utils.rb, lib/rgl/implicit.rb (tags: REL_0_2_2),
|
337
|
+
tests/TestComponents.rb (tags: REL_0_2_3, REL_0_2_2),
|
338
|
+
tests/TestDirectedGraph.rb (tags: REL_0_2_2),
|
339
|
+
tests/TestImplicit.rb (tags: PRE_CHECKIN_JC, REL_0_2_3,
|
340
|
+
REL_0_2_2), tests/TestTransitiveClosure.rb (tags: PRE_CHECKIN_JC,
|
341
|
+
REL_0_2_3, REL_0_2_2), tests/TestTraversal.rb (tags:
|
342
|
+
PRE_CHECKIN_JC, REL_0_2_3, REL_0_2_2),
|
343
|
+
tests/TestUnDirectedGraph.rb (tags: REL_0_2_2),
|
344
|
+
tests/_TestGraphXML.rb, tests/runtests.rb (utags: rforge-import):
|
345
|
+
- port to ruby 1.8 - compiler warnings removed - set_up -> setup
|
346
|
+
in testfiles
|
347
|
+
|
348
|
+
2002-11-13 21:53 monora
|
349
|
+
|
350
|
+
* lib/rgl/: rdot.rb, dot.rb (utags: REL_0_2_2, rforge-import):
|
351
|
+
Name-attribute of DOTNode has to be escaped by ".
|
352
|
+
|
353
|
+
2002-11-10 21:21 monora
|
354
|
+
|
355
|
+
* lib/: utils.rb, rgl/adjacency.rb (tags: REL_0_2_2,
|
356
|
+
rforge-import), set.rb: Use knus compatibility library for Ruby
|
357
|
+
1.8 esp. for set.rb and inject.
|
358
|
+
|
359
|
+
2002-09-22 15:58 monora
|
360
|
+
|
361
|
+
* lib/rgl/dot.rb: to_dot_graph now also outputs vertices.
|
362
|
+
|
363
|
+
2002-09-22 15:57 monora
|
364
|
+
|
365
|
+
* lib/rgl/adjacency.rb: cosmetic.
|
118
366
|
|
119
|
-
|
120
|
-
* adjacency.rb, base.rb: Changed NameError to NoVertexError. Fixed Bug Nr. 599872.
|
367
|
+
2002-09-17 22:58 monora
|
121
368
|
|
122
|
-
|
369
|
+
* Makefile (tags: REL_0_2_2, rforge-import): Added releasedoc
|
370
|
+
target.
|
123
371
|
|
124
|
-
|
125
|
-
canvas.rb added. Collision with rdoc/dot.rb removed.
|
372
|
+
2002-09-17 22:57 monora
|
126
373
|
|
127
|
-
|
374
|
+
* lib/rgl/: base.rb (tags: rforge-import), implicit.rb: Fixed typo.
|
128
375
|
|
129
|
-
|
376
|
+
2002-08-29 21:20 monora
|
130
377
|
|
131
|
-
*
|
378
|
+
* ChangeLog: Changed NameError to NoVertexError.
|
132
379
|
|
133
|
-
|
134
|
-
New file.
|
380
|
+
2002-08-29 21:17 monora
|
135
381
|
|
136
|
-
*
|
137
|
-
|
382
|
+
* tests/TestDirectedGraph.rb, tests/TestUnDirectedGraph.rb,
|
383
|
+
lib/rgl/adjacency.rb, lib/rgl/base.rb, ChangeLog: Changed
|
384
|
+
NameError to NoVertexError.
|
138
385
|
|
139
|
-
2002-
|
386
|
+
2002-08-23 22:07 monora
|
140
387
|
|
141
|
-
*
|
388
|
+
* Makefile (tags: V0_2_1), README (tags: rforge-import, V0_2_1),
|
389
|
+
examples/canvas.rb (tags: PRE_CHECKIN_JC, REL_0_2_3, REL_0_2_2,
|
390
|
+
rforge-import, V0_2_1), examples/north/g.12.8.graphml (tags:
|
391
|
+
PRE_CHECKIN_JC, REL_0_2_3, REL_0_2_2, rforge-import, V0_2_1),
|
392
|
+
examples/north/g.14.9.graphml (tags: PRE_CHECKIN_JC, REL_0_2_3,
|
393
|
+
REL_0_2_2, rforge-import, V0_2_1), lib/dot/dot.rb,
|
394
|
+
lib/rgl/base.rb (tags: V0_2_1), lib/rgl/dot.rb (tags: V0_2_1),
|
395
|
+
lib/rgl/rdot.rb (tags: V0_2_1): canvas.rb added. Collision with
|
396
|
+
rdoc/dot.rb removed.
|
142
397
|
|
143
|
-
2002-
|
398
|
+
2002-08-19 21:58 monora
|
144
399
|
|
145
|
-
*
|
146
|
-
* transitive_closure.rb
|
400
|
+
* README (tags: V0_2): Added link to SF.
|
147
401
|
|