cairo 1.16.2 → 1.16.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/NEWS +27 -0
- data/ext/cairo/extconf.rb +6 -16
- data/ext/cairo/rb_cairo.h +1 -1
- data/ext/cairo/rb_cairo_context.c +5 -5
- data/ext/cairo/rb_cairo_device.c +2 -2
- data/ext/cairo/rb_cairo_io.c +4 -4
- data/ext/cairo/rb_cairo_pattern.c +3 -3
- data/ext/cairo/rb_cairo_private.c +3 -3
- data/ext/cairo/rb_cairo_private.h +2 -2
- data/ext/cairo/rb_cairo_scaled_font.c +2 -2
- data/lib/cairo/color.rb +7 -7
- data/lib/cairo/colors.rb +3303 -617
- data/lib/cairo/point.rb +1 -1
- data/test/test_colors.rb +9999 -0
- metadata +5 -3
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cairo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.16.
|
|
4
|
+
version: 1.16.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kouhei Sutou
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pkg-config
|
|
@@ -169,6 +169,7 @@ files:
|
|
|
169
169
|
- test/helper.rb
|
|
170
170
|
- test/run-test.rb
|
|
171
171
|
- test/test_color.rb
|
|
172
|
+
- test/test_colors.rb
|
|
172
173
|
- test/test_constants.rb
|
|
173
174
|
- test/test_context.rb
|
|
174
175
|
- test/test_exception.rb
|
|
@@ -214,7 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
214
215
|
version: '0'
|
|
215
216
|
requirements: []
|
|
216
217
|
rubyforge_project:
|
|
217
|
-
rubygems_version:
|
|
218
|
+
rubygems_version: 2.7.6
|
|
218
219
|
signing_key:
|
|
219
220
|
specification_version: 4
|
|
220
221
|
summary: Ruby bindings for cairo
|
|
@@ -222,6 +223,7 @@ test_files:
|
|
|
222
223
|
- test/test_text_cluster.rb
|
|
223
224
|
- test/test_text_extents.rb
|
|
224
225
|
- test/test_font_extents.rb
|
|
226
|
+
- test/test_colors.rb
|
|
225
227
|
- test/test_scaled_font.rb
|
|
226
228
|
- test/test_paper.rb
|
|
227
229
|
- test/test_svg_surface.rb
|