google-protobuf 3.21.7-x86-linux → 3.21.8-x86-linux
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: f000a1796d8566c32f5ea8a81603a432a0c51f4eab5d180c6843630d1c2a7e49
|
4
|
+
data.tar.gz: b488cbe6529452db480d3da180695377f9e628f8909e5cea9658fd14d23e4d78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fb3e90ee4ce4be42eff94cbd15b0e03ae67e53071418f0957ebb373458006f277dc0a14c679c625cb68b7e98fa816460a4851d92502b529847dc81871fdcbd0
|
7
|
+
data.tar.gz: 6c8678d785221a59f00f25cf897720c65bafaa2924475871003eb83153896a921faaba797b861661a6643472338b38764f2e5320611e7d999dc9aa91bc044ddb
|
@@ -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-linux
|
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:
|