gtk3 4.2.4 → 4.2.6

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +2 -2
  3. data/gtk3.gemspec +12 -1
  4. metadata +15 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b96642cd9cd111822e583462931034e926d73da06aca371395482b98e7daa74
4
- data.tar.gz: 41eee7e0962ce991d3697f64c32618741ac4179be3e12ca7f06fcedc41269399
3
+ metadata.gz: 2f8decf6179e70ba8e0dd5050e46f69fc69813b8481bbfa453654a6ee620938c
4
+ data.tar.gz: 8bd3edd7a4c74973ac21e65ffc7974639ca1975717a4767fad20d85d423198dc
5
5
  SHA512:
6
- metadata.gz: 8cf429272ce3a0f501f4402954f9ae62aa765a336758208844e868ac6f7fa5f9ba0c01495a37c8294809ae160dbc7b46fdc3a47e1ee6374406bf7d26c38792b6
7
- data.tar.gz: 8e6b55851373854c3caacd7928e48c26c0cad7dcd643163d0f80ec45ee9f7de84006c32f1f43c8a4a93b094cf1401f858e77bf8db7d604a56c865c950dba7f5c
6
+ metadata.gz: db2a62a6759164359e5099eba8dfc99f7fab803e3d50485dc28cdc28e34ede469e13fb95faa862752e39d9c7aa727b556d112cf9f5bb29814ef3eb138ce21561
7
+ data.tar.gz: 3c0040cbd320d8faa9955888816b0000e91ab3001d11230d9875215fe916165722c6ba3c9392691606a2e45bf828f739c50aa2e05ff4e82ea3d30a785b9da9b7
data/Rakefile CHANGED
@@ -18,10 +18,10 @@
18
18
 
19
19
 
20
20
  $LOAD_PATH.unshift("./../glib2/lib")
21
- require 'gnome2/rake/package-task'
21
+ require 'gnome/rake/package-task'
22
22
 
23
23
  package_name = File.basename(__dir__)
24
24
  spec = Gem::Specification.load("#{package_name}.gemspec")
25
25
 
26
- GNOME2::Rake::PackageTask.define(spec, __dir__) do |package|
26
+ GNOME::Rake::PackageTask.define(spec, __dir__) do |package|
27
27
  end
data/gtk3.gemspec CHANGED
@@ -21,7 +21,18 @@ require_relative "../glib2/version"
21
21
  Gem::Specification.new do |s|
22
22
  s.name = "gtk3"
23
23
  s.summary = "Ruby/GTK3 is a Ruby binding of GTK+-3.x."
24
- s.description = "Ruby/GTK3 is a Ruby binding of GTK+-3.x."
24
+ s.description = "Ruby/Gtk3 is a Ruby binding of GTK 3.x. It allows Ruby " +
25
+ "programmers to use the GTK graphics toolkit to make " +
26
+ "graphical user interfaces for their Ruby scripts. " +
27
+ "Many of the programs you use like file explorers, " +
28
+ "browsers, graphics programs etc. use GTK to make their " +
29
+ "GUI. In fact, there's a good chance that you're looking at " +
30
+ "a GTK window right now. All the GTK commands and widgets " +
31
+ "have been translated into Ruby, so Ruby programmers can " +
32
+ "write scripts that create windows instead of only " +
33
+ "using the command line. Visit our homepage for install " +
34
+ "instructions and tutorials, at: " +
35
+ "https://www.rubydoc.info/gems/gtk3/"
25
36
  s.author = "The Ruby-GNOME Project Team"
26
37
  s.email = "ruby-gnome2-devel-en@lists.sourceforge.net"
27
38
  s.homepage = "https://ruby-gnome.github.io/"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gtk3
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.4
4
+ version: 4.2.6
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-09-23 00:00:00.000000000 Z
10
+ date: 2025-01-25 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: atk
@@ -15,29 +15,36 @@ dependencies:
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 4.2.4
18
+ version: 4.2.6
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.4
25
+ version: 4.2.6
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: gdk3
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - '='
31
31
  - !ruby/object:Gem::Version
32
- version: 4.2.4
32
+ version: 4.2.6
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - '='
38
38
  - !ruby/object:Gem::Version
39
- version: 4.2.4
40
- description: Ruby/GTK3 is a Ruby binding of GTK+-3.x.
39
+ version: 4.2.6
40
+ description: 'Ruby/Gtk3 is a Ruby binding of GTK 3.x. It allows Ruby programmers to
41
+ use the GTK graphics toolkit to make graphical user interfaces for their Ruby scripts.
42
+ Many of the programs you use like file explorers, browsers, graphics programs etc.
43
+ use GTK to make their GUI. In fact, there''s a good chance that you''re looking
44
+ at a GTK window right now. All the GTK commands and widgets have been translated
45
+ into Ruby, so Ruby programmers can write scripts that create windows instead of
46
+ only using the command line. Visit our homepage for install instructions and tutorials,
47
+ at: https://www.rubydoc.info/gems/gtk3/'
41
48
  email: ruby-gnome2-devel-en@lists.sourceforge.net
42
49
  executables: []
43
50
  extensions:
@@ -612,7 +619,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
612
619
  - !ruby/object:Gem::Version
613
620
  version: '0'
614
621
  requirements: []
615
- rubygems_version: 3.6.0.dev
622
+ rubygems_version: 3.6.2
616
623
  specification_version: 4
617
624
  summary: Ruby/GTK3 is a Ruby binding of GTK+-3.x.
618
625
  test_files: []