gdk_pixbuf2 4.2.1 → 4.2.3

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
2
  SHA256:
3
- metadata.gz: e8c6badb848834105c4275889f8bb09a5c264becb88ad456ecf98e7a90720b4e
4
- data.tar.gz: 1ba55d26896336493bcc738eeba6abee17a51de9b4deccab77908c3384df60ba
3
+ metadata.gz: 205dd921b7893d65cdd25f5fe460487ed08141b77a6de2d515d5851e7869f547
4
+ data.tar.gz: 1ee39d64eee35df4e6cb1c287c6f8f23c79ab2c0a35a2b311ff12b5cfab3efe5
5
5
  SHA512:
6
- metadata.gz: b9c0271655d9284a6c29b81e28c9c020bebf7bb10368d4ae8aff7ddefcfcc2d667dd3c3fd74c73b82177944fd650a8a980df205242951a1c615fff09df320c86
7
- data.tar.gz: 5f356f2041c81495ede2ee9a02ccf5a840eff980451198e553adb47e78dc7e9afc7f850faf029d24e0f12067dd2565f77b3ba9036a0660f7d7c95d6dea430f1b
6
+ metadata.gz: b32b9ecc9a70f013a58105012255aafd78ce3da08cac64f49adb1085379ac4b7b95ee9f1014ad8f883fde8e46aada678ae3ccc171b8528807f5d0670f9c8aa4b
7
+ data.tar.gz: 2a92c1d6b3b4c77f64ddbec65b5bb66cbb7a82a11f701b8fc7e8ca22ca89c6e86dd6b4999e7340c8560865e07481e21ba7667c97d794ca1faa2ba05dfeb1d878
data/README.md CHANGED
@@ -21,4 +21,4 @@ under the terms of the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1.
21
21
  ## Project Websites
22
22
 
23
23
  * https://github.com/ruby-gnome/ruby-gnome
24
- * https://ruby-gnome2.osdn.jp/
24
+ * https://ruby-gnome.github.io/
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-gnome2.osdn.jp/"
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-2018 Ruby-GNOME2 Project Team
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,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gdk_pixbuf2
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.1
4
+ version: 4.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Ruby-GNOME Project Team
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-02-22 00:00:00.000000000 Z
10
+ date: 2024-09-19 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gio2
@@ -16,14 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - '='
18
17
  - !ruby/object:Gem::Version
19
- version: 4.2.1
18
+ version: 4.2.3
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - '='
25
24
  - !ruby/object:Gem::Version
26
- version: 4.2.1
25
+ version: 4.2.3
27
26
  description: Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.
28
27
  email: ruby-gnome2-devel-en@lists.sourceforge.net
29
28
  executables: []
@@ -64,12 +63,11 @@ files:
64
63
  - test/test-animation.rb
65
64
  - test/test-loader.rb
66
65
  - test/test-pixbuf.rb
67
- homepage: https://ruby-gnome2.osdn.jp/
66
+ homepage: https://ruby-gnome.github.io/
68
67
  licenses:
69
68
  - LGPL-2.1+
70
69
  metadata:
71
70
  msys2_mingw_dependencies: gdk-pixbuf2
72
- post_install_message:
73
71
  rdoc_options: []
74
72
  require_paths:
75
73
  - lib
@@ -84,8 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
82
  - !ruby/object:Gem::Version
85
83
  version: '0'
86
84
  requirements: []
87
- rubygems_version: 3.5.1
88
- signing_key:
85
+ rubygems_version: 3.6.0.dev
89
86
  specification_version: 4
90
87
  summary: Ruby/GdkPixbuf2 is a Ruby binding of GdkPixbuf-2.x.
91
88
  test_files: []