google-protobuf 3.19.0.rc.1-x86_64-darwin

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.

Files changed (43) hide show
  1. checksums.yaml +7 -0
  2. data/ext/google/protobuf_c/convert.c +348 -0
  3. data/ext/google/protobuf_c/convert.h +72 -0
  4. data/ext/google/protobuf_c/defs.c +1284 -0
  5. data/ext/google/protobuf_c/defs.h +107 -0
  6. data/ext/google/protobuf_c/extconf.rb +20 -0
  7. data/ext/google/protobuf_c/map.c +694 -0
  8. data/ext/google/protobuf_c/map.h +67 -0
  9. data/ext/google/protobuf_c/message.c +1328 -0
  10. data/ext/google/protobuf_c/message.h +101 -0
  11. data/ext/google/protobuf_c/protobuf.c +470 -0
  12. data/ext/google/protobuf_c/protobuf.h +117 -0
  13. data/ext/google/protobuf_c/repeated_field.c +659 -0
  14. data/ext/google/protobuf_c/repeated_field.h +63 -0
  15. data/ext/google/protobuf_c/ruby-upb.c +9171 -0
  16. data/ext/google/protobuf_c/ruby-upb.h +4704 -0
  17. data/ext/google/protobuf_c/wrap_memcpy.c +51 -0
  18. data/lib/google/2.3/protobuf_c.bundle +0 -0
  19. data/lib/google/2.4/protobuf_c.bundle +0 -0
  20. data/lib/google/2.5/protobuf_c.bundle +0 -0
  21. data/lib/google/2.6/protobuf_c.bundle +0 -0
  22. data/lib/google/2.7/protobuf_c.bundle +0 -0
  23. data/lib/google/3.0/protobuf_c.bundle +0 -0
  24. data/lib/google/protobuf/any_pb.rb +19 -0
  25. data/lib/google/protobuf/api_pb.rb +41 -0
  26. data/lib/google/protobuf/descriptor_dsl.rb +458 -0
  27. data/lib/google/protobuf/descriptor_pb.rb +266 -0
  28. data/lib/google/protobuf/duration_pb.rb +19 -0
  29. data/lib/google/protobuf/empty_pb.rb +17 -0
  30. data/lib/google/protobuf/field_mask_pb.rb +18 -0
  31. data/lib/google/protobuf/message_exts.rb +53 -0
  32. data/lib/google/protobuf/repeated_field.rb +188 -0
  33. data/lib/google/protobuf/source_context_pb.rb +18 -0
  34. data/lib/google/protobuf/struct_pb.rb +37 -0
  35. data/lib/google/protobuf/timestamp_pb.rb +19 -0
  36. data/lib/google/protobuf/type_pb.rb +91 -0
  37. data/lib/google/protobuf/well_known_types.rb +235 -0
  38. data/lib/google/protobuf/wrappers_pb.rb +50 -0
  39. data/lib/google/protobuf.rb +79 -0
  40. data/tests/basic.rb +640 -0
  41. data/tests/generated_code_test.rb +23 -0
  42. data/tests/stress.rb +38 -0
  43. metadata +144 -0
metadata ADDED
@@ -0,0 +1,144 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: google-protobuf
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.19.0.rc.1
5
+ platform: x86_64-darwin
6
+ authors:
7
+ - Protobuf Authors
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-10-16 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake-compiler-dock
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 1.1.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '2.0'
23
+ type: :development
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: 1.1.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '2.0'
33
+ - !ruby/object:Gem::Dependency
34
+ name: rake-compiler
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: 1.1.0
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 1.1.0
47
+ - !ruby/object:Gem::Dependency
48
+ name: test-unit
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: '3.0'
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: 3.0.9
57
+ type: :development
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - "~>"
62
+ - !ruby/object:Gem::Version
63
+ version: '3.0'
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: 3.0.9
67
+ description: Protocol Buffers are Google's data interchange format.
68
+ email: protobuf@googlegroups.com
69
+ executables: []
70
+ extensions: []
71
+ extra_rdoc_files: []
72
+ files:
73
+ - ext/google/protobuf_c/convert.c
74
+ - ext/google/protobuf_c/convert.h
75
+ - ext/google/protobuf_c/defs.c
76
+ - ext/google/protobuf_c/defs.h
77
+ - ext/google/protobuf_c/extconf.rb
78
+ - ext/google/protobuf_c/map.c
79
+ - ext/google/protobuf_c/map.h
80
+ - ext/google/protobuf_c/message.c
81
+ - ext/google/protobuf_c/message.h
82
+ - ext/google/protobuf_c/protobuf.c
83
+ - ext/google/protobuf_c/protobuf.h
84
+ - ext/google/protobuf_c/repeated_field.c
85
+ - ext/google/protobuf_c/repeated_field.h
86
+ - ext/google/protobuf_c/ruby-upb.c
87
+ - ext/google/protobuf_c/ruby-upb.h
88
+ - ext/google/protobuf_c/wrap_memcpy.c
89
+ - lib/google/2.3/protobuf_c.bundle
90
+ - lib/google/2.4/protobuf_c.bundle
91
+ - lib/google/2.5/protobuf_c.bundle
92
+ - lib/google/2.6/protobuf_c.bundle
93
+ - lib/google/2.7/protobuf_c.bundle
94
+ - lib/google/3.0/protobuf_c.bundle
95
+ - lib/google/protobuf.rb
96
+ - lib/google/protobuf/any_pb.rb
97
+ - lib/google/protobuf/api_pb.rb
98
+ - lib/google/protobuf/descriptor_dsl.rb
99
+ - lib/google/protobuf/descriptor_pb.rb
100
+ - lib/google/protobuf/duration_pb.rb
101
+ - lib/google/protobuf/empty_pb.rb
102
+ - lib/google/protobuf/field_mask_pb.rb
103
+ - lib/google/protobuf/message_exts.rb
104
+ - lib/google/protobuf/repeated_field.rb
105
+ - lib/google/protobuf/source_context_pb.rb
106
+ - lib/google/protobuf/struct_pb.rb
107
+ - lib/google/protobuf/timestamp_pb.rb
108
+ - lib/google/protobuf/type_pb.rb
109
+ - lib/google/protobuf/well_known_types.rb
110
+ - lib/google/protobuf/wrappers_pb.rb
111
+ - tests/basic.rb
112
+ - tests/generated_code_test.rb
113
+ - tests/stress.rb
114
+ homepage: https://developers.google.com/protocol-buffers
115
+ licenses:
116
+ - BSD-3-Clause
117
+ metadata:
118
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.19.0-rc1/ruby
119
+ post_install_message:
120
+ rdoc_options: []
121
+ require_paths:
122
+ - lib
123
+ required_ruby_version: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - ">="
126
+ - !ruby/object:Gem::Version
127
+ version: '2.3'
128
+ - - "<"
129
+ - !ruby/object:Gem::Version
130
+ version: 3.1.dev
131
+ required_rubygems_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">"
134
+ - !ruby/object:Gem::Version
135
+ version: 1.3.1
136
+ requirements: []
137
+ rubygems_version: 3.2.29
138
+ signing_key:
139
+ specification_version: 4
140
+ summary: Protocol Buffers
141
+ test_files:
142
+ - tests/basic.rb
143
+ - tests/stress.rb
144
+ - tests/generated_code_test.rb