gobject-introspection 3.5.0 → 3.5.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d900b67cd67be1ad0e06f5133ec36392d596b8959f673f963e14415fee507da
|
4
|
+
data.tar.gz: 50d2d5a4081bc5e8c70c0fc1352fa74f4e0b1c0bd26277d2d83471177e9674a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0940a38670e64d25d1d194aa25518499918414f1eed3afcbd589fa25d9cb12f5ee0f483e9b1d2a8e1b4aa53c874581c73dddf44f83ed1b4a2cebe9934e50fab
|
7
|
+
data.tar.gz: 84defecd5296d7f61309ef62aa92cbf09f296a85dc18e14ccc92cf3bb0e4a82dc0c4d7582b578e90977e807bb59f9ae845f15841002be99cdf7bc51abdb11c23
|
@@ -39,6 +39,21 @@ rb_gi_is_debug_mode(void)
|
|
39
39
|
return is_debug_mode;
|
40
40
|
}
|
41
41
|
|
42
|
+
#ifdef _WIN32
|
43
|
+
/* Workaround: See glib2/ext/glib2/rbglib.c for details. */
|
44
|
+
BOOL WINAPI
|
45
|
+
DllMain(G_GNUC_UNUSED HINSTANCE hinstDLL,
|
46
|
+
G_GNUC_UNUSED DWORD fdwReason,
|
47
|
+
G_GNUC_UNUSED LPVOID lpvReserved);
|
48
|
+
BOOL WINAPI
|
49
|
+
DllMain(G_GNUC_UNUSED HINSTANCE hinstDLL,
|
50
|
+
G_GNUC_UNUSED DWORD fdwReason,
|
51
|
+
G_GNUC_UNUSED LPVOID lpvReserved)
|
52
|
+
{
|
53
|
+
return TRUE;
|
54
|
+
}
|
55
|
+
#endif
|
56
|
+
|
42
57
|
void
|
43
58
|
Init_gobject_introspection(void)
|
44
59
|
{
|
@@ -354,7 +354,7 @@ module GObjectIntrospection
|
|
354
354
|
message << arguments.collect(&:inspect).join(", ")
|
355
355
|
message << "): "
|
356
356
|
message << "available signatures"
|
357
|
-
invokers.
|
357
|
+
invokers.each_value do |invoker|
|
358
358
|
message << ": \#{invoker.signature}"
|
359
359
|
end
|
360
360
|
raise ArgumentError, message
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gobject-introspection
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: glib2
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.5.
|
19
|
+
version: 3.5.1
|
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.5.
|
26
|
+
version: 3.5.1
|
27
27
|
description: Ruby/GObjectIntrospection provides bindings of GObject Introspection
|
28
28
|
and a loader module that can generate dynamically Ruby bindings of any GObject C
|
29
29
|
libraries
|