ruby-graphviz 1.2.3 → 1.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +4 -3
- data/AUTHORS.rdoc +2 -0
- data/CHANGELOG.rdoc +21 -1
- data/README.rdoc +1 -1
- data/lib/graphviz/constants.rb +2 -1
- data/man/dot2ruby.1.ronn +1 -1
- data/man/gem2gv.1.ronn +1 -1
- data/man/git2gv.1.ronn +1 -1
- data/man/ruby2gv.1.ronn +1 -1
- data/man/xml2gv.1.ronn +1 -1
- data/test/test_examples.rb +3 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d8b6c16a0d451fb225478c664fc209a1848e033f2af5c2522d998a895cb981c6
|
4
|
+
data.tar.gz: 45184439d910791aee2869f23427c50d5028d4d44729b4cba5c32646165a6e60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c997cc790867a783191a04aeb980a8bd610fbbdebc98e3d0fec887a6a4df821be4697ef7a2c32c54bfbce2544431d97b02a0dd96ab9f5422b315fac3bbac69d
|
7
|
+
data.tar.gz: 9d22fe4e85cfc46c857f72ed5e625c132fa9acc34bd6164716ee5fb3393afd0ef5b17457a26160efd8c740280026105b0e7c16d565c3c6e6c92945003d30c722
|
data/.travis.yml
CHANGED
data/AUTHORS.rdoc
CHANGED
@@ -31,6 +31,8 @@
|
|
31
31
|
* Khalil Fazal <https://github.com/khalilfazal>
|
32
32
|
* Olle Jonsson <https://github.com/olleolleolle>
|
33
33
|
* Guilherme Simoes <https://github.com/guilhermesimoes>
|
34
|
+
* SHIBATA Hiroshi <https://github.com/hsbt>
|
35
|
+
* moracca <https://github.com/moracca>
|
34
36
|
|
35
37
|
Thanks to :
|
36
38
|
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
= CHANGELOG
|
2
2
|
|
3
|
+
== 1.2.4 :
|
4
|
+
* Added explicitly declaration for Open3 module on GraphVizTest
|
5
|
+
* Add support for the 'class' attribute
|
6
|
+
|
7
|
+
== 1.2.3 :
|
8
|
+
* Adding license info to gempsec
|
9
|
+
* Update build for rubinius-3.69
|
10
|
+
* Bug correction with Ruby 2.4
|
11
|
+
* Update links to HTTPS
|
12
|
+
* Add gemspec requirements attribut
|
13
|
+
|
14
|
+
== 1.2.2 :
|
15
|
+
* Remove duplication in utils/colors.rb
|
16
|
+
|
17
|
+
== 1.2.1 :
|
18
|
+
* Issue #92 : Can no longer create binary strings
|
19
|
+
* Remove support for Ruby < 1.9.3
|
20
|
+
|
21
|
+
== 1.2.0 :
|
22
|
+
* Issue #89: Force label to be HTML
|
23
|
+
|
3
24
|
== 1.1.0 :
|
4
25
|
* Issue #61 : Combine graphviz instances
|
5
26
|
* Issue #73 : Avoid constructing shell commands as strings
|
@@ -284,4 +305,3 @@
|
|
284
305
|
|
285
306
|
== 0.1.0 :
|
286
307
|
* Initial version
|
287
|
-
|
data/README.rdoc
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
{<img src="https://secure.travis-ci.org/glejeune/Ruby-Graphviz.svg" />}[https://travis-ci.org/glejeune/Ruby-Graphviz]
|
4
4
|
{<img src="https://badge.fury.io/rb/ruby-graphviz.svg" alt="Gem Version" />}[https://rubygems.org/gems/ruby-graphviz]
|
5
5
|
|
6
|
-
Copyright (C) 2004-
|
6
|
+
Copyright (C) 2004-2018 Gregoire Lejeune
|
7
7
|
|
8
8
|
* Doc : http://rdoc.info/projects/glejeune/Ruby-Graphviz
|
9
9
|
* Sources : https://github.com/glejeune/Ruby-Graphviz
|
data/lib/graphviz/constants.rb
CHANGED
@@ -41,7 +41,7 @@
|
|
41
41
|
#
|
42
42
|
class GraphViz
|
43
43
|
module Constants
|
44
|
-
RGV_VERSION = "1.2.
|
44
|
+
RGV_VERSION = "1.2.4"
|
45
45
|
|
46
46
|
## Const: Output formats
|
47
47
|
FORMATS = [
|
@@ -131,6 +131,7 @@ class GraphViz
|
|
131
131
|
"bgcolor" => { :usedBy => "GC", :type => :Color }, # color
|
132
132
|
"center" => { :usedBy => "G", :type => :GvBool }, # bool
|
133
133
|
"charset" => { :usedBy => "G", :type => :EscString }, # string
|
134
|
+
"class" => { :usedBy => "ENCG", :type => :EscString }, # string
|
134
135
|
"clusterrank" => { :usedBy => "G", :type => :EscString }, # clusterMode
|
135
136
|
"color" => { :usedBy => "ENC", :type => :ColorList }, # color, colorList
|
136
137
|
"colorscheme" => { :usedBy => "ENCG", :type => :EscString }, # string
|
data/man/dot2ruby.1.ronn
CHANGED
@@ -49,7 +49,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
|
|
49
49
|
|
50
50
|
## AUTHOR
|
51
51
|
|
52
|
-
Copyright 2004-
|
52
|
+
Copyright 2004-2018 Gregoire Lejeune
|
53
53
|
|
54
54
|
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
|
55
55
|
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|
data/man/gem2gv.1.ronn
CHANGED
@@ -41,7 +41,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
|
|
41
41
|
|
42
42
|
## AUTHOR
|
43
43
|
|
44
|
-
Copyright 2004-
|
44
|
+
Copyright 2004-2018 Gregoire Lejeune
|
45
45
|
|
46
46
|
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
|
47
47
|
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|
data/man/git2gv.1.ronn
CHANGED
@@ -34,7 +34,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
|
|
34
34
|
|
35
35
|
## AUTHOR
|
36
36
|
|
37
|
-
Copyright 2004-
|
37
|
+
Copyright 2004-2018 Gregoire Lejeune
|
38
38
|
|
39
39
|
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
|
40
40
|
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|
data/man/ruby2gv.1.ronn
CHANGED
@@ -41,7 +41,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
|
|
41
41
|
|
42
42
|
## AUTHOR
|
43
43
|
|
44
|
-
Copyright 2004-
|
44
|
+
Copyright 2004-2018 Gregoire Lejeune
|
45
45
|
|
46
46
|
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
|
47
47
|
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|
data/man/xml2gv.1.ronn
CHANGED
@@ -33,7 +33,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
|
|
33
33
|
|
34
34
|
## AUTHOR
|
35
35
|
|
36
|
-
Copyright 2004-
|
36
|
+
Copyright 2004-2018 Gregoire Lejeune
|
37
37
|
|
38
38
|
This manual page is written by Praveen Arimbrathodiyl <praveen@debian.org> for
|
39
39
|
Debian GNU System (GNU/Linux, GNU/kFreeBSD, GNU/Hurd).
|
data/test/test_examples.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'open3'
|
2
|
+
|
1
3
|
class GraphVizTest < Test::Unit::TestCase
|
2
4
|
# you can run a subset of all the samples like this:
|
3
5
|
# ruby test/test_examples.rb --name='/sample3[6-9]/'
|
@@ -96,7 +98,7 @@ class GraphVizTest < Test::Unit::TestCase
|
|
96
98
|
FileUtils.rm_rf OutputDir
|
97
99
|
end
|
98
100
|
FileUtils.cp_r ExampleDir, OutputDir
|
99
|
-
|
101
|
+
|
100
102
|
samples = Dir[File.join(OutputDir,'sample*.rb')].sort
|
101
103
|
samples.each {|path| make_sample_test_method(path) }
|
102
104
|
|
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.4
|
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: 2018-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -309,7 +309,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
309
309
|
requirements:
|
310
310
|
- GraphViz
|
311
311
|
rubyforge_project: ruby-asp
|
312
|
-
rubygems_version: 2.6
|
312
|
+
rubygems_version: 2.7.6
|
313
313
|
signing_key:
|
314
314
|
specification_version: 4
|
315
315
|
summary: Interface to the GraphViz graphing tool
|