ruby-graphviz 1.2.2 → 1.2.3
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.
- checksums.yaml +4 -4
- data/.travis.yml +17 -3
- data/AUTHORS.rdoc +17 -11
- data/CHANGELOG.rdoc +2 -2
- data/README.rdoc +8 -7
- data/examples/graphml/attributes.ext.graphml +4 -4
- data/examples/graphml/attributes.graphml +1 -1
- data/examples/graphml/cluster.graphml +1 -1
- data/examples/graphml/failed_graph.graphml +1 -1
- data/examples/graphml/hyper.graphml +1 -1
- data/examples/graphml/nested.graphml +1 -1
- data/examples/graphml/port.graphml +1 -1
- data/examples/graphml/simple.graphml +1 -1
- data/examples/sample29.rb +1 -1
- data/examples/sample58.rb +1 -1
- data/lib/graphviz/constants.rb +1 -1
- data/lib/graphviz/edge.rb +1 -1
- data/lib/graphviz/nothugly.rb +4 -4
- data/lib/graphviz/nothugly/nothugly.xsl +4 -4
- data/lib/graphviz/utils/colors.rb +4 -4
- data/man/dot2ruby.1 +1 -1
- data/man/gem2gv.1 +1 -1
- data/man/git2gv.1 +1 -1
- data/man/ruby2gv.1 +1 -1
- data/man/xml2gv.1 +1 -1
- data/ruby-graphviz.gemspec +9 -6
- metadata +9 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 279f7f25f9fc2b3d777b24b2e0b1c82011bc8135
|
|
4
|
+
data.tar.gz: b8b0d706e880abc95bffc27ac4d722b5baba3274
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1f45725e5b6aeb9a6376e9f12cba797e597d3483bfc8c733143488a8107c3b4c8aabc48793ca9fc4563843b911d43716c191dcdc426851ff37032cdf7b1a61b0
|
|
7
|
+
data.tar.gz: 0a59aaa51b4afb1a436f3700ddb2a0239191bac84db4d79732d828ac79e2bf47635d5ea5c6539ad56b7e21aebe3d40ddfb03a6b4302ffb8a9a6e3b773402ac84
|
data/.travis.yml
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
|
+
# Need sudo to install rubinius-3.69
|
|
2
|
+
sudo: required
|
|
3
|
+
|
|
4
|
+
# The binary for rubinius-3.69 is not available for
|
|
5
|
+
# ubuntu/12.04 (Precise Pangolin) but is for ubuntu/14.04 (Trusty Tahr)
|
|
6
|
+
#
|
|
7
|
+
# See:
|
|
8
|
+
# - https://rubinius-binaries-rubinius-com.s3-us-west-2.amazonaws.com/
|
|
9
|
+
# - "Rubinius no longer supports Precise. Please use Trusty."
|
|
10
|
+
# https://docs.travis-ci.com/user/languages/ruby/#Supported-Ruby-Versions-and-RVM
|
|
11
|
+
#
|
|
12
|
+
# Note: travis-ci uses precise by default
|
|
13
|
+
dist: trusty
|
|
14
|
+
|
|
1
15
|
rvm:
|
|
2
|
-
- 1.9.3
|
|
3
16
|
- 2.0.0
|
|
4
|
-
- 2.1.
|
|
17
|
+
- 2.1.2
|
|
18
|
+
- 2.4.0
|
|
5
19
|
- jruby
|
|
6
|
-
-
|
|
20
|
+
- rubinius-3.69
|
data/AUTHORS.rdoc
CHANGED
|
@@ -1,30 +1,36 @@
|
|
|
1
1
|
* Gregoire Lejeune <glejeune.lejeune@free.fr>
|
|
2
2
|
* Brandon Coleman <metrix1978@gmail.com>
|
|
3
|
-
* Dave Burt <
|
|
3
|
+
* Dave Burt <https://github.com/dburt>
|
|
4
4
|
* Miguel Cabrera <http://mfcabrera.com>
|
|
5
|
-
* obruening <
|
|
6
|
-
* reactive <
|
|
5
|
+
* obruening <https://github.com/obruening>
|
|
6
|
+
* reactive <https://github.com/reactive>
|
|
7
7
|
* Hugh Sasse <hgs@dmu.ac.uk>
|
|
8
|
-
* axgle <
|
|
9
|
-
* hipe <
|
|
10
|
-
* Stefan Huber <
|
|
11
|
-
* Nigel Thorne <
|
|
12
|
-
* Rolf Timmermans <
|
|
13
|
-
* Jonas Elfström <
|
|
14
|
-
* oupo <
|
|
8
|
+
* axgle <https://github.com/axgle>
|
|
9
|
+
* hipe <https://github.com/hipe>
|
|
10
|
+
* Stefan Huber <https://github.com/MSNexploder>
|
|
11
|
+
* Nigel Thorne <https://github.com/NigelThorne>
|
|
12
|
+
* Rolf Timmermans <https://github.com/rolftimmermans>
|
|
13
|
+
* Jonas Elfström <https://github.com/jonelf>
|
|
14
|
+
* oupo <https://github.com/oupo>
|
|
15
15
|
* Daniel Zollinger <https://github.com/dznz>
|
|
16
16
|
* Ronen Barzel <https://github.com/ronen>
|
|
17
17
|
* Jamison Dance <https://github.com/jergason>
|
|
18
18
|
* hirochachacha <https://github.com/hirochachacha>
|
|
19
19
|
* coding64 <https://github.com/coding46>
|
|
20
20
|
* Neven Has <https://github.com/nevenh>
|
|
21
|
-
* Postmodern <https://github.com/postmodern>
|
|
21
|
+
* Postmodern <https://github.com/postmodern>
|
|
22
22
|
* Mike Fiedler <https://github.com/miketheman>
|
|
23
23
|
* Kenichi Kamiya <https://github.com/kachick>
|
|
24
24
|
* Gabe Kopley <https://github.com/gkop>
|
|
25
25
|
* markus1189 <https://github.com/markus1189>
|
|
26
26
|
* Praveen Arimbrathodiyil <https://github.com/pravi>
|
|
27
27
|
* Andrew <https://github.com/AndrewKvalheim>
|
|
28
|
+
* Joseph Anthony Pasquale Holsten <https://github.com/josephholsten>
|
|
29
|
+
* Oleg Orlov <https://github.com/OrelSokolov>
|
|
30
|
+
* Nathan Long <https://github.com/nathanl>
|
|
31
|
+
* Khalil Fazal <https://github.com/khalilfazal>
|
|
32
|
+
* Olle Jonsson <https://github.com/olleolleolle>
|
|
33
|
+
* Guilherme Simoes <https://github.com/guilhermesimoes>
|
|
28
34
|
|
|
29
35
|
Thanks to :
|
|
30
36
|
|
data/CHANGELOG.rdoc
CHANGED
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
|
|
166
166
|
== 0.9.12 :
|
|
167
167
|
* GraphViz::Node#name is deprecated, you must use GraphViz::Node#id (issue #14)
|
|
168
|
-
* Add :nothugly option to GraphViz#output (see sample41.rb and http://
|
|
168
|
+
* Add :nothugly option to GraphViz#output (see sample41.rb and http://hokstad.com/making-graphviz-output-pretty-with-xsl)
|
|
169
169
|
* Issue #13 : you must now specify a port in GraphViz::Edge.new with a syntax like this :
|
|
170
170
|
GraphViz::Edge.new( {nodeOne => :port}, {nodeTwo => :other} )
|
|
171
171
|
* Issue #12 : UTF8 support (see sample38.rb)
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
* Issue #11 : Cygwin PATH
|
|
177
177
|
* Major bugs correction in output
|
|
178
178
|
* Bug correction in find_executable
|
|
179
|
-
* Add tests (by Chip Malice :
|
|
179
|
+
* Add tests (by Chip Malice : https://github.com/hipe)
|
|
180
180
|
|
|
181
181
|
== 0.9.10 :
|
|
182
182
|
* Move ChangeLog in README
|
data/README.rdoc
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
= Ruby/GraphViz
|
|
2
2
|
|
|
3
|
-
{<img src="https://secure.travis-ci.org/glejeune/Ruby-Graphviz.
|
|
4
|
-
{<img src="https://badge.fury.io/rb/ruby-graphviz.
|
|
3
|
+
{<img src="https://secure.travis-ci.org/glejeune/Ruby-Graphviz.svg" />}[https://travis-ci.org/glejeune/Ruby-Graphviz]
|
|
4
|
+
{<img src="https://badge.fury.io/rb/ruby-graphviz.svg" alt="Gem Version" />}[https://rubygems.org/gems/ruby-graphviz]
|
|
5
5
|
|
|
6
6
|
Copyright (C) 2004-2014 Gregoire Lejeune
|
|
7
7
|
|
|
8
8
|
* Doc : http://rdoc.info/projects/glejeune/Ruby-Graphviz
|
|
9
|
-
* Sources :
|
|
10
|
-
*
|
|
9
|
+
* Sources : https://github.com/glejeune/Ruby-Graphviz
|
|
10
|
+
* On Rubygems: https://rubygems.org/gems/ruby-graphviz
|
|
11
|
+
* <b>NEW</b> - Mailing List : https://groups.google.com/forum/#!forum/ruby-graphviz
|
|
11
12
|
|
|
12
13
|
== DESCRIPTION
|
|
13
14
|
|
|
@@ -107,7 +108,7 @@ Ruby/GraphViz also includes :
|
|
|
107
108
|
}
|
|
108
109
|
puts graph_g.output( :canon => String )
|
|
109
110
|
|
|
110
|
-
* <tt>git2gv</tt>, a tool that allows you to show your git commits
|
|
111
|
+
* <tt>git2gv</tt>, a tool that allows you to show your git commits
|
|
111
112
|
|
|
112
113
|
* <tt>xml2gv</tt>, a tool that allows you to show a xml file as graph.
|
|
113
114
|
|
|
@@ -172,7 +173,7 @@ GNU General Public License (see the file 'COPYING').
|
|
|
172
173
|
This program is distributed without any warranty. See the file
|
|
173
174
|
'COPYING' for details.
|
|
174
175
|
|
|
175
|
-
GNU General Public Licence:
|
|
176
|
+
GNU General Public Licence: https://en.wikipedia.org/wiki/Gpl
|
|
176
177
|
|
|
177
178
|
=== nothugly.xsl
|
|
178
179
|
|
|
@@ -199,4 +200,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
199
200
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
200
201
|
THE SOFTWARE.
|
|
201
202
|
|
|
202
|
-
MIT license:
|
|
203
|
+
MIT license: https://en.wikipedia.org/wiki/MIT_License
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
|
|
3
|
-
xmlns:xlink="
|
|
4
|
-
xmlns:xsi="
|
|
5
|
-
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
|
|
2
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns"
|
|
3
|
+
xmlns:xlink="https://www.w3.org/1999/xlink"
|
|
4
|
+
xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
5
|
+
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns
|
|
6
6
|
graphml+xlink.xsd">
|
|
7
7
|
<graph edgedefault="directed">
|
|
8
8
|
<node id="n0" xlink:href="http://graphml.graphdrawing.org"/>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!-- This file was written by the JAVA GraphML Library.-->
|
|
3
|
-
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="
|
|
3
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
4
4
|
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
5
5
|
<key id="d0" for="node" attr.name="color" attr.type="string">
|
|
6
6
|
<default>yellow</default>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!-- This file was written by the JAVA GraphML Library.-->
|
|
3
|
-
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="
|
|
3
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
4
4
|
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
5
5
|
<key id="color" for="all" attr.name="color" attr.type="string"/>
|
|
6
6
|
<key id="style" for="all" attr.name="style" attr.type="string"/>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="
|
|
2
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xmlns:y="http://www.yworks.com/xml/graphml" xmlns:yed="http://www.yworks.com/xml/yed/3" xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://www.yworks.com/xml/schema/graphml/1.1/ygraphml.xsd">
|
|
3
3
|
<!--Created by yFiles for Java 2.9-->
|
|
4
4
|
<key for="graphml" id="d0" yfiles.type="resources"/>
|
|
5
5
|
<key for="port" id="d1" yfiles.type="portgraphics"/>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="
|
|
2
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
3
3
|
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
4
4
|
<graph id="G" edgedefault="directed">
|
|
5
5
|
<node id="n0"/>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!-- This file was written by the JAVA GraphML Library.-->
|
|
3
|
-
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="
|
|
3
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
4
4
|
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
5
5
|
<key id="color" for="all" attr.name="color" attr.type="string"/>
|
|
6
6
|
<key id="style" for="graph" attr.name="style" attr.type="string"/>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="
|
|
2
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
3
3
|
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
4
4
|
<graph id="G" edgedefault="directed">
|
|
5
5
|
<node id="n0">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
2
|
<!-- This file was written by the JAVA GraphML Library.-->
|
|
3
|
-
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="
|
|
3
|
+
<graphml xmlns="http://graphml.graphdrawing.org/xmlns" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
|
|
4
4
|
xsi:schemaLocation="http://graphml.graphdrawing.org/xmlns http://graphml.graphdrawing.org/xmlns/1.0/graphml.xsd">
|
|
5
5
|
<graph id="G" edgedefault="directed">
|
|
6
6
|
<node id="n0"/>
|
data/examples/sample29.rb
CHANGED
|
@@ -4,5 +4,5 @@ $:.unshift( "../lib" );
|
|
|
4
4
|
require "graphviz"
|
|
5
5
|
|
|
6
6
|
GraphViz.new(:G){ |g|
|
|
7
|
-
g.add_nodes("\"Hello.\"\nHow are you ?", :href => "
|
|
7
|
+
g.add_nodes("\"Hello.\"\nHow are you ?", :href => "https://www.example.com/", :tooltip => "\"Hello.\"\nHow are you ?", :shape => "ellipse", :color => "#FF0000")
|
|
8
8
|
}.save( :svg => "#{$0}.svg" )
|
data/examples/sample58.rb
CHANGED
data/lib/graphviz/constants.rb
CHANGED
data/lib/graphviz/edge.rb
CHANGED
|
@@ -80,7 +80,7 @@ class GraphViz
|
|
|
80
80
|
# Set values for edge attributes or
|
|
81
81
|
# get the value of the given edge attribute +attribute_name+
|
|
82
82
|
def []( attribute_name )
|
|
83
|
-
# Modification by axgle (
|
|
83
|
+
# Modification by axgle (https://github.com/axgle)
|
|
84
84
|
if Hash === attribute_name
|
|
85
85
|
attribute_name.each do |key, value|
|
|
86
86
|
self[key] = value
|
data/lib/graphviz/nothugly.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# This file use notugly.xsl: An XSL transform to pretty up the SVG output from Graphviz
|
|
2
2
|
#
|
|
3
|
-
# See: http://
|
|
4
|
-
# And: http://
|
|
3
|
+
# See: http://hokstad.com/making-graphviz-output-pretty-with-xsl
|
|
4
|
+
# And: http://hokstad.com/making-graphviz-output-pretty-with-xsl-updated
|
|
5
5
|
#
|
|
6
6
|
# By Vidar Hokstad and Ryan Shea; Contributions by Jonas Tingborn,
|
|
7
7
|
# Earl Cummings, Michael Kennedy (Graphviz 2.20.2 compatibility, bug fixes,
|
|
@@ -20,8 +20,8 @@ end
|
|
|
20
20
|
class GraphViz
|
|
21
21
|
# Transform to pretty up the SVG output
|
|
22
22
|
#
|
|
23
|
-
# For more information, see http://
|
|
24
|
-
# and http://
|
|
23
|
+
# For more information, see http://hokstad.com/making-graphviz-output-pretty-with-xsl
|
|
24
|
+
# and http://hokstad.com/making-graphviz-output-pretty-with-xsl-updated
|
|
25
25
|
#
|
|
26
26
|
# You can use the :nothugly option to GraphViz#output :
|
|
27
27
|
#
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
<?xml version="1.0" ?>
|
|
2
|
-
<xsl:stylesheet xmlns:xsl="
|
|
3
|
-
xmlns:svg="
|
|
2
|
+
<xsl:stylesheet xmlns:xsl="https://www.w3.org/1999/XSL/Transform" version="1.0"
|
|
3
|
+
xmlns:svg="https://www.w3.org/2000/svg" xmlns="https://www.w3.org/2000/svg">
|
|
4
4
|
<xsl:output method="xml" indent="yes"
|
|
5
5
|
doctype-public="-//W3C//DTD SVG 1.0//EN"
|
|
6
|
-
doctype-system="
|
|
6
|
+
doctype-system="https://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"/>
|
|
7
7
|
|
|
8
8
|
<xsl:template match="@*|node()">
|
|
9
9
|
<xsl:copy>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
</xsl:template>
|
|
13
13
|
|
|
14
14
|
<xsl:template match="svg:svg">
|
|
15
|
-
<svg xmlns="
|
|
15
|
+
<svg xmlns="https://www.w3.org/2000/svg">
|
|
16
16
|
<!-- Order is important here, so the attributes below overrides the
|
|
17
17
|
originals, which are copied "wholesale" -->
|
|
18
18
|
<xsl:apply-templates select="@*" />
|
|
@@ -14,28 +14,28 @@ class GraphViz
|
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
def rgb(r, g, b, a = nil)
|
|
17
|
-
if r.is_a?(
|
|
17
|
+
if r.is_a?(Integer)
|
|
18
18
|
r = r.to_s.convert_base(10, 16)
|
|
19
19
|
end
|
|
20
20
|
unless r.is_a?(String) and HEX_FOR_COLOR.match(r)
|
|
21
21
|
raise ColorException, "Bad red value"
|
|
22
22
|
end
|
|
23
23
|
|
|
24
|
-
if g.is_a?(
|
|
24
|
+
if g.is_a?(Integer)
|
|
25
25
|
g = g.to_s.convert_base(10, 16)
|
|
26
26
|
end
|
|
27
27
|
unless g.is_a?(String) and HEX_FOR_COLOR.match(g)
|
|
28
28
|
raise ColorException, "Bad green value"
|
|
29
29
|
end
|
|
30
30
|
|
|
31
|
-
if b.is_a?(
|
|
31
|
+
if b.is_a?(Integer)
|
|
32
32
|
b = b.to_s.convert_base(10, 16)
|
|
33
33
|
end
|
|
34
34
|
unless b.is_a?(String) and HEX_FOR_COLOR.match(b)
|
|
35
35
|
raise ColorException, "Bad blue value"
|
|
36
36
|
end
|
|
37
37
|
|
|
38
|
-
if a.is_a?(
|
|
38
|
+
if a.is_a?(Integer)
|
|
39
39
|
a = a.to_s.convert_base(10, 16)
|
|
40
40
|
end
|
|
41
41
|
unless a.nil? or (a.is_a?(String) and HEX_FOR_COLOR.match(a))
|
data/man/dot2ruby.1
CHANGED
data/man/gem2gv.1
CHANGED
data/man/git2gv.1
CHANGED
data/man/ruby2gv.1
CHANGED
data/man/xml2gv.1
CHANGED
data/ruby-graphviz.gemspec
CHANGED
|
@@ -7,12 +7,13 @@ Gem::Specification.new do |s|
|
|
|
7
7
|
s.name = "ruby-graphviz"
|
|
8
8
|
s.version = GraphViz::Constants::RGV_VERSION
|
|
9
9
|
s.platform = Gem::Platform::RUBY
|
|
10
|
+
s.license = "GPL-2.0"
|
|
10
11
|
|
|
11
12
|
s.authors = ["Gregoire Lejeune"]
|
|
12
|
-
s.summary =
|
|
13
|
-
s.email =
|
|
14
|
-
s.homepage =
|
|
15
|
-
s.description =
|
|
13
|
+
s.summary = "Interface to the GraphViz graphing tool"
|
|
14
|
+
s.email = "gregoire.lejeune@free.fr"
|
|
15
|
+
s.homepage = "https://github.com/glejeune/Ruby-Graphviz"
|
|
16
|
+
s.description = "Ruby/Graphviz provides an interface to layout and generate images of directed graphs in a variety of formats (PostScript, PNG, etc.) using GraphViz."
|
|
16
17
|
|
|
17
18
|
s.files = `git ls-files`.split("\n")
|
|
18
19
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
@@ -28,8 +29,8 @@ You need to install GraphViz (http://graphviz.org/) to use this Gem.
|
|
|
28
29
|
|
|
29
30
|
For more information about Ruby-Graphviz :
|
|
30
31
|
* Doc : http://rdoc.info/projects/glejeune/Ruby-Graphviz
|
|
31
|
-
* Sources :
|
|
32
|
-
* Mailing List :
|
|
32
|
+
* Sources : https://github.com/glejeune/Ruby-Graphviz
|
|
33
|
+
* Mailing List : https://groups.google.com/forum/#!forum/ruby-graphviz
|
|
33
34
|
|
|
34
35
|
Last (important) changes :
|
|
35
36
|
Ruby-Graphviz no longer supports Ruby < 1.9.3
|
|
@@ -43,4 +44,6 @@ Ruby-Graphviz no longer supports Ruby < 1.9.3
|
|
|
43
44
|
s.add_development_dependency 'test-unit'
|
|
44
45
|
|
|
45
46
|
s.required_ruby_version = '>= 1.9.3'
|
|
47
|
+
|
|
48
|
+
s.requirements << 'GraphViz'
|
|
46
49
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-graphviz
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Gregoire Lejeune
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-03-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -281,12 +281,13 @@ files:
|
|
|
281
281
|
- test/test_theory.rb
|
|
282
282
|
- test/test_types.rb
|
|
283
283
|
- test/test_utils_colors.rb
|
|
284
|
-
homepage:
|
|
285
|
-
licenses:
|
|
284
|
+
homepage: https://github.com/glejeune/Ruby-Graphviz
|
|
285
|
+
licenses:
|
|
286
|
+
- GPL-2.0
|
|
286
287
|
metadata: {}
|
|
287
288
|
post_install_message: "\nYou need to install GraphViz (http://graphviz.org/) to use
|
|
288
289
|
this Gem.\n\nFor more information about Ruby-Graphviz :\n* Doc : http://rdoc.info/projects/glejeune/Ruby-Graphviz\n*
|
|
289
|
-
Sources :
|
|
290
|
+
Sources : https://github.com/glejeune/Ruby-Graphviz\n* Mailing List : https://groups.google.com/forum/#!forum/ruby-graphviz\n\nLast
|
|
290
291
|
(important) changes :\nRuby-Graphviz no longer supports Ruby < 1.9.3\n "
|
|
291
292
|
rdoc_options:
|
|
292
293
|
- "--title"
|
|
@@ -305,9 +306,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
305
306
|
- - ">="
|
|
306
307
|
- !ruby/object:Gem::Version
|
|
307
308
|
version: '0'
|
|
308
|
-
requirements:
|
|
309
|
+
requirements:
|
|
310
|
+
- GraphViz
|
|
309
311
|
rubyforge_project: ruby-asp
|
|
310
|
-
rubygems_version: 2.
|
|
312
|
+
rubygems_version: 2.6.8
|
|
311
313
|
signing_key:
|
|
312
314
|
specification_version: 4
|
|
313
315
|
summary: Interface to the GraphViz graphing tool
|