google-protobuf 3.21.7-x86-mingw32 → 3.21.8-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of google-protobuf might be problematic. Click here for more details.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 918400476a5bfcbc967919878a754c3471ab0b9a5d915a03a3b1c5e58b3e3845
|
4
|
+
data.tar.gz: ba2dc64b33c58dff6c5498a9237843069941683947db988f6a261eab09f4d4b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 685ef00c6d74494b89a1563fc5e231b4aeed7d3b0210d4679b11e960a51b36c0651b0fbcc9a0672299f3b9674404b81c72042f86fd816302150d8f913d1dfcce
|
7
|
+
data.tar.gz: e645ea069deb5f0b5860868f7b2febfef1e52f94ffb3192f3e496a468cd0b883dee112204904a9e32104081a7b483d8f90b087532e98fb7c785b9620839f47f8
|
@@ -1290,15 +1290,20 @@ VALUE build_module_from_enumdesc(VALUE _enumdesc) {
|
|
1290
1290
|
int n = upb_EnumDef_ValueCount(e);
|
1291
1291
|
for (int i = 0; i < n; i++) {
|
1292
1292
|
const upb_EnumValueDef* ev = upb_EnumDef_Value(e, i);
|
1293
|
-
|
1293
|
+
char* name = strdup(upb_EnumValueDef_Name(ev));
|
1294
1294
|
int32_t value = upb_EnumValueDef_Number(ev);
|
1295
1295
|
if (name[0] < 'A' || name[0] > 'Z') {
|
1296
|
-
|
1296
|
+
if (name[0] >= 'a' && name[0] <= 'z') {
|
1297
|
+
name[0] -= 32; // auto capitalize
|
1298
|
+
} else {
|
1299
|
+
rb_warn(
|
1297
1300
|
"Enum value '%s' does not start with an uppercase letter "
|
1298
1301
|
"as is required for Ruby constants.",
|
1299
1302
|
name);
|
1303
|
+
}
|
1300
1304
|
}
|
1301
1305
|
rb_define_const(mod, name, INT2NUM(value));
|
1306
|
+
free(name);
|
1302
1307
|
}
|
1303
1308
|
|
1304
1309
|
rb_define_singleton_method(mod, "lookup", enum_lookup, 1);
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-protobuf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.21.
|
4
|
+
version: 3.21.8
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Protobuf Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler-dock
|
@@ -113,7 +113,7 @@ homepage: https://developers.google.com/protocol-buffers
|
|
113
113
|
licenses:
|
114
114
|
- BSD-3-Clause
|
115
115
|
metadata:
|
116
|
-
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.21.
|
116
|
+
source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.21.8/ruby
|
117
117
|
post_install_message:
|
118
118
|
rdoc_options: []
|
119
119
|
require_paths:
|