README.rdoc in rgl-0.5.0 vs README.rdoc in rgl-0.5.1
- old
+ new
@@ -16,14 +16,14 @@
This document concentrates on the special issues of the implementation in
Ruby. The main design goals directly taken from the BGL design are:
* An interface for how the structure of a graph can be accessed using a generic
interface that hides the details of the graph data structure
- implementation. This interface is defined by the module Graph, which should be
+ implementation. This interface is defined by the module {Graph}, which should be
included in concrete classes.
-* A standardized generic interface for traversing graphs (RGL::GraphIterator)
+* A standardized generic interface for traversing graphs {RGL::GraphIterator}
RGL provides some general purpose graph classes that conform to this interface,
but they are not meant to be the *only* graph classes. As in BGL I believe that
the main contribution of the RGL is the formulation of this interface.
@@ -123,11 +123,11 @@
irb> dg.write_to_graphic_file('jpg')
"graph.jpg"
The result:
-link:examples/images/example.jpg
+link:images/example.jpg
irb> dg.directed?
true
irb> dg.vertices
[5, 6, 1, 2, 3, 4]
@@ -198,15 +198,15 @@
g = g.vertices_filtered_by {|v| tree.has_vertex? v}
g.write_to_graphic_file('jpg')
creates the following graph image with DOT:
-link:examples/images/module_graph.jpg
+link:images/module_graph.jpg
This graph shows all loaded RGL modules:
-link:examples/images/rgl_modules.png
+link:images/rgl_modules.png
Look for more in _examples_ directory (i.e. {file:examples/examples.rb}).
== My del.icio.us links concerning RGL
@@ -240,9 +240,9 @@
See also http://github.com/monora/rgl/contributors.
== Copying
-RGL is Copyright (c) 2002,2004,2005,2008,2013 by Horst Duchene. It is free software,
+RGL is Copyright (c) 2002,2004,2005,2008,2013,2015 by Horst Duchene. It is free software,
and may be redistributed under the terms specified in the README file of the
Ruby distribution.