graphr 0.2.0 → 0.2.1
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/README.md +5 -1
- data/lib/graphr.rb +3 -0
- data/lib/{graph → graphr}/base_extensions.rb +0 -0
- data/lib/{graph → graphr}/directed_graph.rb +0 -3
- data/lib/{graph → graphr}/graphviz_dot.rb +0 -0
- data/lib/graphr/version.rb +3 -0
- metadata +7 -7
- data/lib/graph/Rakefile +0 -6
- data/lib/graph/version.rb +0 -3
data/README.md
CHANGED
|
@@ -7,11 +7,15 @@ Graph-related Ruby classes [written by Robert Feld](http://rockit.sourceforge.ne
|
|
|
7
7
|
* DirectedGraph - fairly extensive directed graph class.
|
|
8
8
|
* DotGraphPrinter - output a graph in GraphViz's dot format and invoke dot.
|
|
9
9
|
|
|
10
|
+
###Install
|
|
11
|
+
|
|
12
|
+
gem install graphr
|
|
13
|
+
|
|
10
14
|
###Example Usage
|
|
11
15
|
|
|
12
16
|
```ruby
|
|
13
17
|
# Lets crank out a simple graph...
|
|
14
|
-
require '
|
|
18
|
+
require 'graphr'
|
|
15
19
|
|
|
16
20
|
# In this simple example we don't even have a "real" graph
|
|
17
21
|
# just an Array with the links. The optional third element
|
data/lib/graphr.rb
ADDED
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: graphr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2012-07-
|
|
13
|
+
date: 2012-07-25 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: ! ' Graph-related Ruby classes, including a fairly extensive directed
|
|
16
16
|
graph class, and an interface to Graphviz'' DOT graph generator. '
|
|
@@ -21,11 +21,11 @@ executables: []
|
|
|
21
21
|
extensions: []
|
|
22
22
|
extra_rdoc_files: []
|
|
23
23
|
files:
|
|
24
|
-
- lib/
|
|
25
|
-
- lib/
|
|
26
|
-
- lib/
|
|
27
|
-
- lib/
|
|
28
|
-
- lib/
|
|
24
|
+
- lib/graphr/base_extensions.rb
|
|
25
|
+
- lib/graphr/directed_graph.rb
|
|
26
|
+
- lib/graphr/graphviz_dot.rb
|
|
27
|
+
- lib/graphr/version.rb
|
|
28
|
+
- lib/graphr.rb
|
|
29
29
|
- tests/directed_graph.rb
|
|
30
30
|
- tests/graphviz_dot.rb
|
|
31
31
|
- tests/test.rb
|
data/lib/graph/Rakefile
DELETED
data/lib/graph/version.rb
DELETED