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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 279f7f25f9fc2b3d777b24b2e0b1c82011bc8135
4
- data.tar.gz: b8b0d706e880abc95bffc27ac4d722b5baba3274
2
+ SHA256:
3
+ metadata.gz: d8b6c16a0d451fb225478c664fc209a1848e033f2af5c2522d998a895cb981c6
4
+ data.tar.gz: 45184439d910791aee2869f23427c50d5028d4d44729b4cba5c32646165a6e60
5
5
  SHA512:
6
- metadata.gz: 1f45725e5b6aeb9a6376e9f12cba797e597d3483bfc8c733143488a8107c3b4c8aabc48793ca9fc4563843b911d43716c191dcdc426851ff37032cdf7b1a61b0
7
- data.tar.gz: 0a59aaa51b4afb1a436f3700ddb2a0239191bac84db4d79732d828ac79e2bf47635d5ea5c6539ad56b7e21aebe3d40ddfb03a6b4302ffb8a9a6e3b773402ac84
6
+ metadata.gz: 9c997cc790867a783191a04aeb980a8bd610fbbdebc98e3d0fec887a6a4df821be4697ef7a2c32c54bfbce2544431d97b02a0dd96ab9f5422b315fac3bbac69d
7
+ data.tar.gz: 9d22fe4e85cfc46c857f72ed5e625c132fa9acc34bd6164716ee5fb3393afd0ef5b17457a26160efd8c740280026105b0e7c16d565c3c6e6c92945003d30c722
@@ -13,8 +13,9 @@ sudo: required
13
13
  dist: trusty
14
14
 
15
15
  rvm:
16
- - 2.0.0
17
- - 2.1.2
18
- - 2.4.0
16
+ - 2.2.10
17
+ - 2.4.5
18
+ - 2.5.3
19
19
  - jruby
20
+ - rubinius-3.107
20
21
  - rubinius-3.69
@@ -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
 
@@ -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
-
@@ -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-2014 Gregoire Lejeune
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
@@ -41,7 +41,7 @@
41
41
  #
42
42
  class GraphViz
43
43
  module Constants
44
- RGV_VERSION = "1.2.3"
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
@@ -49,7 +49,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
49
49
 
50
50
  ## AUTHOR
51
51
 
52
- Copyright 2004-2014 Gregoire Lejeune
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).
@@ -41,7 +41,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
41
41
 
42
42
  ## AUTHOR
43
43
 
44
- Copyright 2004-2014 Gregoire Lejeune
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).
@@ -34,7 +34,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
34
34
 
35
35
  ## AUTHOR
36
36
 
37
- Copyright 2004-2014 Gregoire Lejeune
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).
@@ -41,7 +41,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
41
41
 
42
42
  ## AUTHOR
43
43
 
44
- Copyright 2004-2014 Gregoire Lejeune
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).
@@ -33,7 +33,7 @@ See </usr/share/doc/ruby-graphviz/> for more details.
33
33
 
34
34
  ## AUTHOR
35
35
 
36
- Copyright 2004-2014 Gregoire Lejeune
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).
@@ -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.3
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: 2017-03-21 00:00:00.000000000 Z
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.8
312
+ rubygems_version: 2.7.6
313
313
  signing_key:
314
314
  specification_version: 4
315
315
  summary: Interface to the GraphViz graphing tool