gobject-introspection 3.3.5 → 3.3.6
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00b3cb89e6856b82bf64ac65e776f8a6881a0e2d6e8b14b2eff708b75f72ee22
|
4
|
+
data.tar.gz: ab04989918760421ce712721a251b368dcceb1b206ad932df789d646c58694d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bfe9bf4ac5f2c3bc7878d32dc6fa9c4e0c2dc3f4c24257d5ceaa61d53ba5d51338ba6975e95dbbbd53307752861484af2f6a345e641c1d514a4705b0370e04ab
|
7
|
+
data.tar.gz: '0466383df2a3d193cd280a7b728ada56841dcf5fe502bc5766203aeab628054dc30dfb9f1d2aab6945debd9073a740184eb72587381139bf7e1e1ccaeac57ead'
|
@@ -3815,7 +3815,7 @@ set_in_array_int64_arguments_from_ruby(GIArgument *array_argument,
|
|
3815
3815
|
n_args = RARRAY_LEN(rb_number_array);
|
3816
3816
|
numbers = ALLOC_N(gint64, n_args);
|
3817
3817
|
for (i = 0; i < n_args; i++) {
|
3818
|
-
numbers[i] =
|
3818
|
+
numbers[i] = NUM2LL(RARRAY_PTR(rb_number_array)[i]);
|
3819
3819
|
}
|
3820
3820
|
|
3821
3821
|
array_argument->v_pointer = numbers;
|
@@ -3831,7 +3831,7 @@ set_in_array_uint64_arguments_from_ruby(GIArgument *array_argument,
|
|
3831
3831
|
n_args = RARRAY_LEN(rb_number_array);
|
3832
3832
|
numbers = ALLOC_N(guint64, n_args);
|
3833
3833
|
for (i = 0; i < n_args; i++) {
|
3834
|
-
numbers[i] =
|
3834
|
+
numbers[i] = NUM2ULL(RARRAY_PTR(rb_number_array)[i]);
|
3835
3835
|
}
|
3836
3836
|
|
3837
3837
|
array_argument->v_pointer = numbers;
|
@@ -603,7 +603,7 @@ module GObjectIntrospection
|
|
603
603
|
if @on_invalid == :fallback
|
604
604
|
return @value_on_invalid
|
605
605
|
else
|
606
|
-
raise ArgumentError, invalid_error_message(
|
606
|
+
raise ArgumentError, invalid_error_message(arguments)
|
607
607
|
end
|
608
608
|
end
|
609
609
|
|
@@ -694,7 +694,7 @@ module GObjectIntrospection
|
|
694
694
|
true
|
695
695
|
end
|
696
696
|
|
697
|
-
def invalid_error_message(
|
697
|
+
def invalid_error_message(arguments)
|
698
698
|
detail = "#{arguments.size} for "
|
699
699
|
if @n_in_args == @n_required_in_args
|
700
700
|
detail << "#{@n_in_args}"
|
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.3.
|
4
|
+
version: 3.3.6
|
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: 2019-03-
|
11
|
+
date: 2019-03-21 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.3.
|
19
|
+
version: 3.3.6
|
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.3.
|
26
|
+
version: 3.3.6
|
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
|