graphr 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
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 'graph/graphviz_dot'
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
@@ -0,0 +1,3 @@
1
+ require 'graphr/base_extensions'
2
+ require 'graphr/graphviz_dot'
3
+ require 'graphr/directed_graph'
File without changes
@@ -1,6 +1,3 @@
1
- require 'graph/base_extensions'
2
- require 'graph/graphviz_dot'
3
-
4
1
  class HashOfHash < DefaultInitHash
5
2
  def initialize(&initBlock)
6
3
  super do
File without changes
@@ -0,0 +1,3 @@
1
+ class GraphR
2
+ VERSION = "0.2.1"
3
+ end
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.0
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-24 00:00:00.000000000 Z
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/graph/base_extensions.rb
25
- - lib/graph/directed_graph.rb
26
- - lib/graph/graphviz_dot.rb
27
- - lib/graph/Rakefile
28
- - lib/graph/version.rb
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
@@ -1,6 +0,0 @@
1
- task :test do
2
- $:.unshift './test'
3
- require File.basename('test/test.rb')
4
- end
5
-
6
- task :default => :test
@@ -1,3 +0,0 @@
1
- class GraphR
2
- VERSION = "0.2.0"
3
- end