google-protobuf 3.0.0.alpha.3.1.pre → 3.0.0.alpha.4.0
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 +4 -4
- data/ext/google/protobuf_c/defs.c +160 -83
- data/ext/google/protobuf_c/encode_decode.c +177 -144
- data/ext/google/protobuf_c/extconf.rb +1 -1
- data/ext/google/protobuf_c/map.c +15 -12
- data/ext/google/protobuf_c/message.c +104 -40
- data/ext/google/protobuf_c/protobuf.c +16 -6
- data/ext/google/protobuf_c/protobuf.h +11 -8
- data/ext/google/protobuf_c/repeated_field.c +138 -85
- data/ext/google/protobuf_c/storage.c +35 -20
- data/ext/google/protobuf_c/upb.c +3443 -2673
- data/ext/google/protobuf_c/upb.h +5086 -4919
- data/lib/google/protobuf.rb +36 -0
- data/lib/google/protobuf/message_exts.rb +53 -0
- data/lib/google/protobuf/repeated_field.rb +188 -0
- data/tests/basic.rb +119 -9
- metadata +6 -4
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.
|
4
|
+
version: 3.0.0.alpha.4.0
|
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-
|
11
|
+
date: 2015-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|
@@ -71,10 +71,12 @@ files:
|
|
71
71
|
- ext/google/protobuf_c/upb.c
|
72
72
|
- ext/google/protobuf_c/upb.h
|
73
73
|
- lib/google/protobuf.rb
|
74
|
+
- lib/google/protobuf/message_exts.rb
|
75
|
+
- lib/google/protobuf/repeated_field.rb
|
74
76
|
- tests/basic.rb
|
75
77
|
- tests/generated_code_test.rb
|
76
78
|
- tests/stress.rb
|
77
|
-
homepage:
|
79
|
+
homepage: https://developers.google.com/protocol-buffers
|
78
80
|
licenses:
|
79
81
|
- BSD
|
80
82
|
metadata: {}
|
@@ -94,7 +96,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
96
|
version: 1.3.1
|
95
97
|
requirements: []
|
96
98
|
rubyforge_project:
|
97
|
-
rubygems_version: 2.4.
|
99
|
+
rubygems_version: 2.4.8
|
98
100
|
signing_key:
|
99
101
|
specification_version: 4
|
100
102
|
summary: Protocol Buffers
|