gtk3 3.1.3 → 3.1.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
2
  SHA1:
3
- metadata.gz: e2ce70e8b883244d97ba90fd975979f7532c1c8c
4
- data.tar.gz: 686c404f53e9e7f663b9b30520b8313750ac15fb
3
+ metadata.gz: 9f1b4dbc754b4424eb666656df69dd6085546456
4
+ data.tar.gz: 1ce21e3e6388009ea5dfc25b2e84b6e3770c8bf4
5
5
  SHA512:
6
- metadata.gz: 31dc2ed1ff24b9d168ea6437de02a57e47e071b4aee395250825c85b46bbb9d47e1e3866448f5d4f47ba44d5dd9b32c49bebcb40c5c26e6dea7a3f69a4da6697
7
- data.tar.gz: ae6aeead2c9af5866f70f6ac7730b086760755e5452745defd88f9ce08c4d0634ff7f2e11396342f9652bb536ea2a2a787f139e63d81bae1e87f974aea707efd
6
+ metadata.gz: e2531da7ed645be6fcf30d7044562887a72289b07518301ca1b7588ba50c266e3bc7dfaace66fa5404e9d37290843c102b126c54e272f77d24837622b04c9444
7
+ data.tar.gz: 8dfa4b0405c2db3a754c3b09a3f1877cade6c47d7afe1ef84eff6f51a36feecfba7223298e1a415ec30432a60435d264ee4a3d86e07a8a401fbd108ed20c4d3f
data/ext/gtk3/extconf.rb CHANGED
@@ -70,7 +70,8 @@ unless required_pkg_config_package(package_id,
70
70
  :redhat => "gtk3-devel",
71
71
  :arch_linux => "gtk3",
72
72
  :homebrew => "gtk+3",
73
- :macports => "gtk3")
73
+ :macports => "gtk3",
74
+ :msys2 => "gtk3")
74
75
  exit(false)
75
76
  end
76
77
 
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2013-2015 Ruby-GNOME2 Project Team
1
+ # Copyright (C) 2013-2017 Ruby-GNOME2 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
@@ -38,7 +38,7 @@ GtkWindow {
38
38
  file.puts("GtkWindow {background-color: red;}")
39
39
  file.close
40
40
  assert do
41
- @provider.load(:file => Gio::File.path(file.path))
41
+ @provider.load(:file => Gio::File.open(path: file.path))
42
42
  end
43
43
  assert_equal(<<-CSS, @provider.to_s)
44
44
  GtkWindow {
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2014 Ruby-GNOME2 Project Team
1
+ # Copyright (C) 2014-2017 Ruby-GNOME2 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
@@ -31,7 +31,7 @@ class TestGtkPlacesSidebar < Test::Unit::TestCase
31
31
  def test_location_accessors
32
32
  assert_nil(@places_sidebar.location)
33
33
 
34
- home = Gio::File.path(ENV["HOME"])
34
+ home = Gio::File.open(path: ENV["HOME"])
35
35
  @places_sidebar.location = home
36
36
  assert_equal(home.path, @places_sidebar.location.path)
37
37
  end
@@ -42,8 +42,8 @@ class TestGtkPlacesSidebar < Test::Unit::TestCase
42
42
  end
43
43
 
44
44
  def test_shortcuts
45
- file_location1 = Gio::File.path("file1")
46
- file_location2 = Gio::File.path("file2")
45
+ file_location1 = Gio::File.open(path: "file1")
46
+ file_location2 = Gio::File.open(path: "file2")
47
47
  @places_sidebar.add_shortcut(file_location1)
48
48
  @places_sidebar.add_shortcut(file_location2)
49
49
  assert_equal([file_location1, file_location2],
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gtk3
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.3
4
+ version: 3.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Ruby-GNOME2 Project Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-27 00:00:00.000000000 Z
11
+ date: 2017-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: glib2
@@ -16,98 +16,98 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 3.1.3
19
+ version: 3.1.4
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 3.1.3
26
+ version: 3.1.4
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: gio2
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 3.1.3
33
+ version: 3.1.4
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 3.1.3
40
+ version: 3.1.4
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: atk
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 3.1.3
47
+ version: 3.1.4
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 3.1.3
54
+ version: 3.1.4
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: pango
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 3.1.3
61
+ version: 3.1.4
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 3.1.3
68
+ version: 3.1.4
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: gdk_pixbuf2
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - '='
74
74
  - !ruby/object:Gem::Version
75
- version: 3.1.3
75
+ version: 3.1.4
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - '='
81
81
  - !ruby/object:Gem::Version
82
- version: 3.1.3
82
+ version: 3.1.4
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: gdk3
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - '='
88
88
  - !ruby/object:Gem::Version
89
- version: 3.1.3
89
+ version: 3.1.4
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - '='
95
95
  - !ruby/object:Gem::Version
96
- version: 3.1.3
96
+ version: 3.1.4
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: gobject-introspection
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - '='
102
102
  - !ruby/object:Gem::Version
103
- version: 3.1.3
103
+ version: 3.1.4
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - '='
109
109
  - !ruby/object:Gem::Version
110
- version: 3.1.3
110
+ version: 3.1.4
111
111
  description: Ruby/GTK3 is a Ruby binding of GTK+-3.x.
112
112
  email: ruby-gnome2-devel-en@lists.sourceforge.net
113
113
  executables: []