gtk3 3.1.3 → 3.1.4
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/ext/gtk3/extconf.rb +2 -1
- data/test/test-gtk-css-provider.rb +2 -2
- data/test/test-gtk-places-sidebar.rb +4 -4
- metadata +16 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f1b4dbc754b4424eb666656df69dd6085546456
|
|
4
|
+
data.tar.gz: 1ce21e3e6388009ea5dfc25b2e84b6e3770c8bf4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e2531da7ed645be6fcf30d7044562887a72289b07518301ca1b7588ba50c266e3bc7dfaace66fa5404e9d37290843c102b126c54e272f77d24837622b04c9444
|
|
7
|
+
data.tar.gz: 8dfa4b0405c2db3a754c3b09a3f1877cade6c47d7afe1ef84eff6f51a36feecfba7223298e1a415ec30432a60435d264ee4a3d86e07a8a401fbd108ed20c4d3f
|
data/ext/gtk3/extconf.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2013-
|
|
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
|
|
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
|
|
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
|
|
46
|
-
file_location2 = Gio::File.path
|
|
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.
|
|
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-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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: []
|