google-protobuf 3.0.0.alpha.1.0 → 3.0.0.alpha.1.1
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 +8 -8
- data/ext/google/protobuf_c/defs.c +107 -6
- data/ext/google/protobuf_c/encode_decode.c +327 -90
- data/ext/google/protobuf_c/extconf.rb +1 -1
- data/ext/google/protobuf_c/map.c +805 -0
- data/ext/google/protobuf_c/message.c +12 -3
- data/ext/google/protobuf_c/protobuf.c +1 -0
- data/ext/google/protobuf_c/protobuf.h +82 -4
- data/ext/google/protobuf_c/repeated_field.c +5 -1
- data/ext/google/protobuf_c/storage.c +148 -41
- data/ext/google/protobuf_c/upb.c +810 -453
- data/ext/google/protobuf_c/upb.h +71 -12
- data/tests/basic.rb +262 -3
- metadata +3 -2
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.0.0.alpha.1.
|
4
|
+
version: 3.0.0.alpha.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Protobuf Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-01-
|
11
|
+
date: 2015-01-13 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Protocol Buffers are Google's data interchange format.
|
14
14
|
email: protobuf@googlegroups.com
|
@@ -20,6 +20,7 @@ files:
|
|
20
20
|
- ext/google/protobuf_c/defs.c
|
21
21
|
- ext/google/protobuf_c/encode_decode.c
|
22
22
|
- ext/google/protobuf_c/extconf.rb
|
23
|
+
- ext/google/protobuf_c/map.c
|
23
24
|
- ext/google/protobuf_c/message.c
|
24
25
|
- ext/google/protobuf_c/protobuf.c
|
25
26
|
- ext/google/protobuf_c/protobuf.h
|