gobject-introspection 4.1.1 → 4.1.2
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/lib/gobject-introspection/loader.rb +5 -4
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eff07e185f0759ccd823df31493a4b7f3012fe045f14eb1edac2315cd657ef23
|
|
4
|
+
data.tar.gz: 67cb2d6f667aa0255ab581eaae1d4fb6d85a736c8c7544c6caccff271b6168f1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be4e95844ad869d782590a6a978947d429b704a054d06a63810d2e2ad4a3daf9e8511f25c1dff60f4d31197c69d84df36db6afe1aaeba3dbf81d9e9ecea7de7b
|
|
7
|
+
data.tar.gz: 608d5dffeb78e04770b721982fcc83d78a5c8742d912f9800b09b6a4d03ad007485f7ea8b6d5e92f04cfb5520f8fedc9093ec52e606489c4e3e9d02cc6ff29bf
|
|
@@ -349,13 +349,14 @@ module GObjectIntrospection
|
|
|
349
349
|
return
|
|
350
350
|
end
|
|
351
351
|
end
|
|
352
|
+
full_method_name = "\#{self.class.name}\#\#{__method__}"
|
|
352
353
|
message = "wrong arguments: "
|
|
353
|
-
message << "\#{
|
|
354
|
+
message << "\#{full_method_name}("
|
|
354
355
|
message << arguments.collect(&:inspect).join(", ")
|
|
355
|
-
message << ")
|
|
356
|
-
message << "available signatures"
|
|
356
|
+
message << "):\\n"
|
|
357
|
+
message << "available signatures:"
|
|
357
358
|
invokers.each_value do |invoker|
|
|
358
|
-
message << "
|
|
359
|
+
message << "\\n\#{full_method_name}\#{invoker.signature}"
|
|
359
360
|
end
|
|
360
361
|
raise ArgumentError, message
|
|
361
362
|
end
|
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: 4.1.
|
|
4
|
+
version: 4.1.2
|
|
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: 2023-02-
|
|
11
|
+
date: 2023-02-24 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: 4.1.
|
|
19
|
+
version: 4.1.2
|
|
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: 4.1.
|
|
26
|
+
version: 4.1.2
|
|
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
|