gdk_pixbuf2 4.2.2 → 4.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/README.md +1 -1
- data/gdk_pixbuf2.gemspec +1 -1
- data/test/test-pixbuf.rb +1 -30
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 205dd921b7893d65cdd25f5fe460487ed08141b77a6de2d515d5851e7869f547
|
|
4
|
+
data.tar.gz: 1ee39d64eee35df4e6cb1c287c6f8f23c79ab2c0a35a2b311ff12b5cfab3efe5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b32b9ecc9a70f013a58105012255aafd78ce3da08cac64f49adb1085379ac4b7b95ee9f1014ad8f883fde8e46aada678ae3ccc171b8528807f5d0670f9c8aa4b
|
|
7
|
+
data.tar.gz: 2a92c1d6b3b4c77f64ddbec65b5bb66cbb7a82a11f701b8fc7e8ca22ca89c6e86dd6b4999e7340c8560865e07481e21ba7667c97d794ca1faa2ba05dfeb1d878
|
data/README.md
CHANGED
data/gdk_pixbuf2.gemspec
CHANGED
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
s.description = "Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x."
|
|
25
25
|
s.author = "The Ruby-GNOME Project Team"
|
|
26
26
|
s.email = "ruby-gnome2-devel-en@lists.sourceforge.net"
|
|
27
|
-
s.homepage = "https://ruby-
|
|
27
|
+
s.homepage = "https://ruby-gnome.github.io/"
|
|
28
28
|
s.licenses = ["LGPL-2.1+"]
|
|
29
29
|
s.version = ruby_glib2_version
|
|
30
30
|
s.extensions = ["dependency-check/Rakefile"]
|
data/test/test-pixbuf.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2016-
|
|
1
|
+
# Copyright (C) 2016-2024 Ruby-GNOME Project Team
|
|
2
2
|
#
|
|
3
3
|
# This library is free software; you can redistribute it and/or
|
|
4
4
|
# modify it under the terms of the GNU Lesser General Public
|
|
@@ -18,25 +18,6 @@ class TestPixbuf < Test::Unit::TestCase
|
|
|
18
18
|
include GdkPixbufTestUtils
|
|
19
19
|
|
|
20
20
|
sub_test_case(".new") do
|
|
21
|
-
def r_xpm
|
|
22
|
-
[
|
|
23
|
-
"10 10 3 1",
|
|
24
|
-
" c None",
|
|
25
|
-
". c #FE0B0B",
|
|
26
|
-
"+ c #FFFFFF",
|
|
27
|
-
"+.......++",
|
|
28
|
-
"+.. ..+",
|
|
29
|
-
"+.. ..+",
|
|
30
|
-
"+.. ...+",
|
|
31
|
-
"+.......++",
|
|
32
|
-
"+.....++++",
|
|
33
|
-
"+..++..+++",
|
|
34
|
-
"+..++...++",
|
|
35
|
-
"+..+++...+",
|
|
36
|
-
"+..++++..+",
|
|
37
|
-
]
|
|
38
|
-
end
|
|
39
|
-
|
|
40
21
|
sub_test_case("legacy form") do
|
|
41
22
|
setup do |&block|
|
|
42
23
|
suppress_warning do
|
|
@@ -67,11 +48,6 @@ class TestPixbuf < Test::Unit::TestCase
|
|
|
67
48
|
assert_equal(GdkPixbuf::Colorspace::RGB, pixbuf.colorspace)
|
|
68
49
|
end
|
|
69
50
|
|
|
70
|
-
test "xpm" do
|
|
71
|
-
pixbuf = GdkPixbuf::Pixbuf.new(r_xpm)
|
|
72
|
-
assert_equal(GdkPixbuf::Colorspace::RGB, pixbuf.colorspace)
|
|
73
|
-
end
|
|
74
|
-
|
|
75
51
|
test "file: size" do
|
|
76
52
|
pixbuf = GdkPixbuf::Pixbuf.new(fixture_path("gnome-logo-icon.png"),
|
|
77
53
|
32, 48)
|
|
@@ -136,11 +112,6 @@ class TestPixbuf < Test::Unit::TestCase
|
|
|
136
112
|
assert_equal(GdkPixbuf::Colorspace::RGB, pixbuf.colorspace)
|
|
137
113
|
end
|
|
138
114
|
|
|
139
|
-
test "xpm" do
|
|
140
|
-
pixbuf = GdkPixbuf::Pixbuf.new(:xpm => r_xpm)
|
|
141
|
-
assert_equal(GdkPixbuf::Colorspace::RGB, pixbuf.colorspace)
|
|
142
|
-
end
|
|
143
|
-
|
|
144
115
|
test "file: size" do
|
|
145
116
|
filename = fixture_path("gnome-logo-icon.png")
|
|
146
117
|
pixbuf = GdkPixbuf::Pixbuf.new(:file => filename,
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gdk_pixbuf2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.2.
|
|
4
|
+
version: 4.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The Ruby-GNOME Project Team
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2024-
|
|
10
|
+
date: 2024-09-19 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: gio2
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 4.2.
|
|
18
|
+
version: 4.2.3
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 4.2.
|
|
25
|
+
version: 4.2.3
|
|
26
26
|
description: Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.
|
|
27
27
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
|
28
28
|
executables: []
|
|
@@ -63,7 +63,7 @@ files:
|
|
|
63
63
|
- test/test-animation.rb
|
|
64
64
|
- test/test-loader.rb
|
|
65
65
|
- test/test-pixbuf.rb
|
|
66
|
-
homepage: https://ruby-
|
|
66
|
+
homepage: https://ruby-gnome.github.io/
|
|
67
67
|
licenses:
|
|
68
68
|
- LGPL-2.1+
|
|
69
69
|
metadata:
|