protobuf 2.8.0.beta9 → 2.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +0 -1
- data/{UPGRADING.md → CHANGES.md} +20 -12
- data/LICENSE.txt +14 -0
- data/README.md +60 -74
- data/bin/protoc-gen-ruby +26 -0
- data/bin/rprotoc +4 -58
- data/lib/protobuf.rb +15 -13
- data/lib/protobuf/code_generator.rb +41 -0
- data/lib/protobuf/descriptors/google/protobuf/compiler/plugin.pb.rb +51 -0
- data/lib/protobuf/descriptors/google/protobuf/descriptor.pb.rb +248 -0
- data/lib/protobuf/field/base_field.rb +0 -1
- data/lib/protobuf/field/bytes_field.rb +1 -1
- data/lib/protobuf/field/message_field.rb +2 -4
- data/lib/protobuf/field/varint_field.rb +4 -7
- data/lib/protobuf/generators/base.rb +71 -0
- data/lib/protobuf/generators/enum_generator.rb +31 -0
- data/lib/protobuf/generators/extension_generator.rb +28 -0
- data/lib/protobuf/generators/field_generator.rb +132 -0
- data/lib/protobuf/generators/file_generator.rb +140 -0
- data/lib/protobuf/generators/group_generator.rb +113 -0
- data/lib/protobuf/generators/message_generator.rb +99 -0
- data/lib/protobuf/generators/printable.rb +161 -0
- data/lib/protobuf/generators/service_generator.rb +27 -0
- data/lib/protobuf/lifecycle.rb +7 -3
- data/lib/protobuf/message.rb +51 -34
- data/lib/protobuf/rpc/connectors/common.rb +4 -6
- data/lib/protobuf/rpc/server.rb +1 -1
- data/lib/protobuf/rpc/servers/zmq/server.rb +2 -2
- data/lib/protobuf/rpc/servers/zmq/worker.rb +2 -2
- data/lib/protobuf/rpc/service.rb +3 -3
- data/lib/protobuf/rpc/service_directory.rb +24 -12
- data/lib/protobuf/version.rb +1 -1
- data/proto/google/protobuf/compiler/plugin.proto +147 -0
- data/proto/google/protobuf/descriptor.proto +620 -0
- data/protobuf.gemspec +12 -21
- data/spec/bin/protoc-gen-ruby_spec.rb +18 -0
- data/spec/data/data.bin +3 -0
- data/{test/data/unk.png → spec/data/types.bin} +0 -0
- data/spec/encoding/all_types_spec.rb +91 -0
- data/spec/encoding/extreme_values_spec.rb +0 -0
- data/spec/lib/protobuf/code_generator_spec.rb +60 -0
- data/spec/lib/protobuf/generators/base_spec.rb +87 -0
- data/spec/lib/protobuf/generators/enum_generator_spec.rb +45 -0
- data/spec/lib/protobuf/generators/extension_generator_spec.rb +43 -0
- data/spec/lib/protobuf/generators/field_generator_spec.rb +99 -0
- data/spec/lib/protobuf/generators/file_generator_spec.rb +29 -0
- data/spec/lib/protobuf/generators/message_generator_spec.rb +0 -0
- data/spec/lib/protobuf/generators/service_generator_spec.rb +43 -0
- data/spec/lib/protobuf/lifecycle_spec.rb +31 -1
- data/spec/lib/protobuf/logger_spec.rb +5 -0
- data/spec/lib/protobuf/message_spec.rb +22 -8
- data/spec/lib/protobuf/rpc/connectors/common_spec.rb +1 -1
- data/spec/lib/protobuf/rpc/service_directory_spec.rb +45 -7
- data/spec/lib/protobuf/rpc/service_spec.rb +3 -3
- data/spec/spec_helper.rb +15 -16
- data/spec/support/test/all_types.data.bin +0 -0
- data/spec/support/test/all_types.data.txt +119 -0
- data/spec/support/test/defaults.pb.rb +25 -0
- data/spec/support/test/defaults.proto +9 -0
- data/spec/support/test/enum.pb.rb +10 -8
- data/spec/support/test/extended.pb.rb +5 -3
- data/spec/support/test/extreme_values.data.bin +0 -0
- data/spec/support/test/google_unittest.pb.rb +543 -0
- data/spec/support/test/google_unittest.proto +713 -0
- data/spec/support/test/google_unittest_import.pb.rb +37 -0
- data/{ext/protobuf-2.4.1/src/google/protobuf/io/package_info.h → spec/support/test/google_unittest_import.proto} +27 -17
- data/spec/support/test/google_unittest_import_public.pb.rb +8 -0
- data/{ext/protobuf-2.4.1/src/google/protobuf/io/coded_stream_inl.h → spec/support/test/google_unittest_import_public.proto} +5 -31
- data/spec/support/test/multi_field_extensions.pb.rb +29 -7
- data/spec/support/test/multi_field_extensions.proto +12 -2
- data/spec/support/test/resource.pb.rb +20 -16
- metadata +149 -236
- data/examples/addressbook.pb.rb +0 -55
- data/examples/addressbook.proto +0 -24
- data/examples/reading_a_message.rb +0 -32
- data/examples/writing_a_message.rb +0 -46
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/code_generator.h +0 -142
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/command_line_interface.h +0 -318
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_enum.h +0 -99
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_enum_field.h +0 -103
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_extension.h +0 -85
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_field.h +0 -167
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_file.h +0 -98
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_generator.h +0 -72
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_helpers.h +0 -159
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_message.h +0 -170
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_message_field.h +0 -102
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_primitive_field.h +0 -103
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_service.h +0 -118
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_string_field.h +0 -104
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h +0 -2721
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/importer.h +0 -303
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_enum.h +0 -84
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_enum_field.h +0 -121
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_extension.h +0 -77
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_field.h +0 -108
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_file.h +0 -101
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_generator.h +0 -72
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_helpers.h +0 -213
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_message.h +0 -109
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_message_field.h +0 -134
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_primitive_field.h +0 -121
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_service.h +0 -113
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_string_field.h +0 -120
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/mock_code_generator.h +0 -113
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/package_info.h +0 -64
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/parser.h +0 -434
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/plugin.h +0 -73
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/plugin.pb.h +0 -790
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/python/python_generator.h +0 -156
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/subprocess.h +0 -108
- data/ext/protobuf-2.4.1/src/google/protobuf/compiler/zip_writer.h +0 -93
- data/ext/protobuf-2.4.1/src/google/protobuf/descriptor.h +0 -1367
- data/ext/protobuf-2.4.1/src/google/protobuf/descriptor.pb.h +0 -5223
- data/ext/protobuf-2.4.1/src/google/protobuf/descriptor_database.h +0 -366
- data/ext/protobuf-2.4.1/src/google/protobuf/dynamic_message.h +0 -136
- data/ext/protobuf-2.4.1/src/google/protobuf/extension_set.h +0 -904
- data/ext/protobuf-2.4.1/src/google/protobuf/generated_message_reflection.h +0 -424
- data/ext/protobuf-2.4.1/src/google/protobuf/generated_message_util.h +0 -82
- data/ext/protobuf-2.4.1/src/google/protobuf/io/coded_stream.h +0 -1102
- data/ext/protobuf-2.4.1/src/google/protobuf/io/gzip_stream.h +0 -207
- data/ext/protobuf-2.4.1/src/google/protobuf/io/printer.h +0 -136
- data/ext/protobuf-2.4.1/src/google/protobuf/io/tokenizer.h +0 -313
- data/ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream.h +0 -238
- data/ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream_impl.h +0 -357
- data/ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream_impl_lite.h +0 -340
- data/ext/protobuf-2.4.1/src/google/protobuf/message.h +0 -692
- data/ext/protobuf-2.4.1/src/google/protobuf/message_lite.h +0 -239
- data/ext/protobuf-2.4.1/src/google/protobuf/package_info.h +0 -64
- data/ext/protobuf-2.4.1/src/google/protobuf/reflection_ops.h +0 -80
- data/ext/protobuf-2.4.1/src/google/protobuf/repeated_field.h +0 -1295
- data/ext/protobuf-2.4.1/src/google/protobuf/service.h +0 -291
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/common.h +0 -1211
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/hash.h +0 -220
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/map-util.h +0 -119
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/once.h +0 -123
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/stl_util-inl.h +0 -121
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/strutil.h +0 -457
- data/ext/protobuf-2.4.1/src/google/protobuf/stubs/substitute.h +0 -170
- data/ext/protobuf-2.4.1/src/google/protobuf/test_util.h +0 -174
- data/ext/protobuf-2.4.1/src/google/protobuf/test_util_lite.h +0 -101
- data/ext/protobuf-2.4.1/src/google/protobuf/testing/file.h +0 -83
- data/ext/protobuf-2.4.1/src/google/protobuf/testing/googletest.h +0 -98
- data/ext/protobuf-2.4.1/src/google/protobuf/text_format.h +0 -285
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest.pb.h +0 -11915
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_custom_options.pb.h +0 -2895
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_embed_optimize_for.pb.h +0 -211
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_empty.pb.h +0 -56
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_import.pb.h +0 -188
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_import_lite.pb.h +0 -151
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_lite.pb.h +0 -4752
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_lite_imports_nonlite.pb.h +0 -150
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_mset.pb.h +0 -816
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_no_generic_services.pb.h +0 -197
- data/ext/protobuf-2.4.1/src/google/protobuf/unittest_optimize_for.pb.h +0 -403
- data/ext/protobuf-2.4.1/src/google/protobuf/unknown_field_set.h +0 -268
- data/ext/protobuf-2.4.1/src/google/protobuf/wire_format.h +0 -304
- data/ext/protobuf-2.4.1/src/google/protobuf/wire_format_lite.h +0 -620
- data/ext/protobuf-2.4.1/src/google/protobuf/wire_format_lite_inl.h +0 -774
- data/ext/ruby_generator/Makefile +0 -10
- data/ext/ruby_generator/RubyGenerator.cpp +0 -544
- data/ext/ruby_generator/RubyGenerator.h +0 -206
- data/ext/ruby_generator/extconf.rb +0 -35
- data/test/data/data_source.py +0 -14
- data/test/data/types_source.py +0 -22
- data/test/proto/addressbook.pb.rb +0 -66
- data/test/proto/addressbook.proto +0 -33
- data/test/proto/addressbook_base.pb.rb +0 -58
- data/test/proto/addressbook_base.proto +0 -26
- data/test/proto/addressbook_ext.pb.rb +0 -20
- data/test/proto/addressbook_ext.proto +0 -6
- data/test/proto/collision.pb.rb +0 -17
- data/test/proto/collision.proto +0 -5
- data/test/proto/ext_collision.pb.rb +0 -24
- data/test/proto/ext_collision.proto +0 -8
- data/test/proto/ext_range.pb.rb +0 -22
- data/test/proto/ext_range.proto +0 -7
- data/test/proto/float_default.proto +0 -10
- data/test/proto/lowercase.pb.rb +0 -30
- data/test/proto/lowercase.proto +0 -9
- data/test/proto/merge.pb.rb +0 -39
- data/test/proto/merge.proto +0 -15
- data/test/proto/nested.pb.rb +0 -30
- data/test/proto/nested.proto +0 -9
- data/test/proto/optional_field.pb.rb +0 -35
- data/test/proto/optional_field.proto +0 -12
- data/test/proto/packed.pb.rb +0 -22
- data/test/proto/packed.proto +0 -6
- data/test/proto/rpc.proto +0 -6
- data/test/proto/types.pb.rb +0 -84
- data/test/proto/types.proto +0 -37
- data/test/test_addressbook.rb +0 -56
- data/test/test_enum_value.rb +0 -41
- data/test/test_extension.rb +0 -36
- data/test/test_lowercase.rb +0 -11
- data/test/test_message.rb +0 -128
- data/test/test_optional_field.rb +0 -103
- data/test/test_packed_field.rb +0 -40
- data/test/test_parse.rb +0 -15
- data/test/test_repeated_types.rb +0 -132
- data/test/test_serialize.rb +0 -61
- data/test/test_standard_message.rb +0 -96
- data/test/test_types.rb +0 -226
@@ -0,0 +1,37 @@
|
|
1
|
+
##
|
2
|
+
# This file is auto-generated. DO NOT EDIT!
|
3
|
+
#
|
4
|
+
require 'protobuf/message'
|
5
|
+
|
6
|
+
module GoogleUnittestImport
|
7
|
+
|
8
|
+
##
|
9
|
+
# Enum Classes
|
10
|
+
#
|
11
|
+
class ImportEnum < ::Protobuf::Enum
|
12
|
+
define :IMPORT_FOO, 7
|
13
|
+
define :IMPORT_BAR, 8
|
14
|
+
define :IMPORT_BAZ, 9
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
##
|
19
|
+
# Message Classes
|
20
|
+
#
|
21
|
+
class PublicImportMessage < ::Protobuf::Message; end
|
22
|
+
class ImportMessage < ::Protobuf::Message; end
|
23
|
+
|
24
|
+
|
25
|
+
##
|
26
|
+
# Message Fields
|
27
|
+
#
|
28
|
+
class PublicImportMessage
|
29
|
+
optional ::Protobuf::Field::Int32Field, :e, 1
|
30
|
+
end
|
31
|
+
|
32
|
+
class ImportMessage
|
33
|
+
optional ::Protobuf::Field::Int32Field, :d, 1
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
|
@@ -32,23 +32,33 @@
|
|
32
32
|
// Based on original Protocol Buffers design by
|
33
33
|
// Sanjay Ghemawat, Jeff Dean, and others.
|
34
34
|
//
|
35
|
-
//
|
36
|
-
// It is not compiled into anything, but it may be read by an automated
|
37
|
-
// documentation generator.
|
35
|
+
// A proto file which is imported by unittest.proto to test importing.
|
38
36
|
|
39
|
-
namespace google {
|
40
37
|
|
41
|
-
|
38
|
+
// We don't put this in a package within proto2 because we need to make sure
|
39
|
+
// that the generated code doesn't depend on being in the proto2 namespace.
|
40
|
+
// In test_util.h we do
|
41
|
+
// "using namespace unittest_import = protobuf_unittest_import".
|
42
|
+
package googleUnittestImport;
|
43
|
+
|
44
|
+
//############################## Test public import
|
45
|
+
// TODO: This will be supported in the next release of the
|
46
|
+
// compiler
|
47
|
+
// import public "test/google_unittest_import_public.proto";
|
48
|
+
|
49
|
+
message PublicImportMessage {
|
50
|
+
optional int32 e = 1;
|
51
|
+
}
|
52
|
+
|
53
|
+
//###############################
|
54
|
+
|
55
|
+
message ImportMessage {
|
56
|
+
optional int32 d = 1;
|
57
|
+
}
|
58
|
+
|
59
|
+
enum ImportEnum {
|
60
|
+
IMPORT_FOO = 7;
|
61
|
+
IMPORT_BAR = 8;
|
62
|
+
IMPORT_BAZ = 9;
|
63
|
+
}
|
42
64
|
|
43
|
-
// Auxiliary classes used for I/O.
|
44
|
-
//
|
45
|
-
// The Protocol Buffer library uses the classes in this package to deal with
|
46
|
-
// I/O and encoding/decoding raw bytes. Most users will not need to
|
47
|
-
// deal with this package. However, users who want to adapt the system to
|
48
|
-
// work with their own I/O abstractions -- e.g., to allow Protocol Buffers
|
49
|
-
// to be read from a different kind of input stream without the need for a
|
50
|
-
// temporary buffer -- should take a closer look.
|
51
|
-
namespace io {}
|
52
|
-
|
53
|
-
} // namespace protobuf
|
54
|
-
} // namespace google
|
@@ -28,37 +28,11 @@
|
|
28
28
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
29
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
30
30
|
|
31
|
-
// Author:
|
32
|
-
//
|
33
|
-
// Implements methods of coded_stream.h that need to be inlined for performance
|
34
|
-
// reasons, but should not be defined in a public header.
|
35
|
-
|
36
|
-
#ifndef GOOGLE_PROTOBUF_IO_CODED_STREAM_INL_H__
|
37
|
-
#define GOOGLE_PROTOBUF_IO_CODED_STREAM_INL_H__
|
38
|
-
|
39
|
-
#include <google/protobuf/io/coded_stream.h>
|
40
|
-
#include <string>
|
41
|
-
#include <google/protobuf/stubs/stl_util-inl.h>
|
42
|
-
|
43
|
-
namespace google {
|
44
|
-
namespace protobuf {
|
45
|
-
namespace io {
|
46
|
-
|
47
|
-
inline bool CodedInputStream::InternalReadStringInline(string* buffer,
|
48
|
-
int size) {
|
49
|
-
if (size < 0) return false; // security: size is often user-supplied
|
31
|
+
// Author: liujisi@google.com (Pherl Liu)
|
50
32
|
|
51
|
-
if (BufferSize() >= size) {
|
52
|
-
STLStringResizeUninitialized(buffer, size);
|
53
|
-
memcpy(string_as_array(buffer), buffer_, size);
|
54
|
-
Advance(size);
|
55
|
-
return true;
|
56
|
-
}
|
57
33
|
|
58
|
-
|
59
|
-
}
|
34
|
+
package googleUnittestImport;
|
60
35
|
|
61
|
-
|
62
|
-
|
63
|
-
}
|
64
|
-
#endif // GOOGLE_PROTOBUF_IO_CODED_STREAM_INL_H__
|
36
|
+
//message PublicImportMessage {
|
37
|
+
// optional int32 e = 1;
|
38
|
+
//}
|
@@ -13,22 +13,44 @@ module Test
|
|
13
13
|
define :PayloadTypeA, 1
|
14
14
|
define :PayloadTypeB, 2
|
15
15
|
end
|
16
|
-
|
16
|
+
|
17
|
+
end
|
18
|
+
|
19
|
+
class PayloadA < ::Protobuf::Message
|
20
|
+
class Foo < ::Protobuf::Message; end
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
class PayloadB < ::Protobuf::Message
|
25
|
+
class Foo < ::Protobuf::Message; end
|
26
|
+
|
17
27
|
end
|
18
|
-
|
19
|
-
|
20
|
-
|
28
|
+
|
29
|
+
|
30
|
+
|
21
31
|
##
|
22
32
|
# Message Fields
|
23
33
|
#
|
24
34
|
class Header
|
25
35
|
required ::Test::Header::Type, :type, 1
|
26
|
-
|
27
36
|
# Extension Fields
|
28
37
|
extensions 100...536870912
|
29
38
|
optional ::Test::PayloadA, :payload, 100, :extension => true
|
30
39
|
end
|
31
|
-
|
32
|
-
|
40
|
+
|
41
|
+
class PayloadA
|
42
|
+
class Foo
|
43
|
+
optional ::Protobuf::Field::StringField, :foo_a, 1
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
class PayloadB
|
49
|
+
class Foo
|
50
|
+
optional ::Protobuf::Field::StringField, :foo_b, 1
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
33
55
|
end
|
34
56
|
|
@@ -2,22 +2,32 @@ package test;
|
|
2
2
|
|
3
3
|
message Header {
|
4
4
|
extensions 100 to max;
|
5
|
+
|
5
6
|
enum Type {
|
6
7
|
PayloadTypeA = 1;
|
7
8
|
PayloadTypeB = 2;
|
8
9
|
}
|
10
|
+
|
9
11
|
required Type type = 1;
|
10
12
|
}
|
11
13
|
|
12
14
|
message PayloadA {
|
15
|
+
message Foo {
|
16
|
+
optional string foo_a = 1;
|
17
|
+
}
|
18
|
+
|
13
19
|
extend Header {
|
14
20
|
optional PayloadA payload = 100;
|
15
21
|
}
|
16
22
|
}
|
17
23
|
|
18
24
|
message PayloadB {
|
19
|
-
|
20
|
-
|
25
|
+
message Foo {
|
26
|
+
optional string foo_b = 1;
|
27
|
+
}
|
28
|
+
|
29
|
+
// UNCOMMENT TO TEST RUNTIME FAILING WITH MULTIPLE FIELDS
|
30
|
+
// extend Header {
|
21
31
|
// optional PayloadB payload = 101;
|
22
32
|
//}
|
23
33
|
}
|
@@ -15,8 +15,8 @@ module Test
|
|
15
15
|
define :DISABLED, 2
|
16
16
|
define :DELETED, 3
|
17
17
|
end
|
18
|
-
|
19
|
-
|
18
|
+
|
19
|
+
|
20
20
|
##
|
21
21
|
# Message Classes
|
22
22
|
#
|
@@ -28,15 +28,21 @@ module Test
|
|
28
28
|
define :FLAT, 1
|
29
29
|
define :NESTED, 2
|
30
30
|
end
|
31
|
-
|
31
|
+
|
32
32
|
end
|
33
|
+
|
33
34
|
class MessageParent < ::Protobuf::Message
|
34
35
|
class MessageChild < ::Protobuf::Message; end
|
36
|
+
|
35
37
|
end
|
38
|
+
|
36
39
|
class Nested < ::Protobuf::Message
|
37
40
|
class NestedLevelOne < ::Protobuf::Message; end
|
41
|
+
|
38
42
|
end
|
39
|
-
|
43
|
+
|
44
|
+
|
45
|
+
|
40
46
|
##
|
41
47
|
# Message Fields
|
42
48
|
#
|
@@ -44,17 +50,16 @@ module Test
|
|
44
50
|
required ::Protobuf::Field::StringField, :name, 1
|
45
51
|
optional ::Protobuf::Field::BoolField, :active, 2
|
46
52
|
end
|
47
|
-
|
53
|
+
|
48
54
|
class ResourceSleepRequest
|
49
55
|
optional ::Protobuf::Field::Int32Field, :sleep, 1
|
50
56
|
end
|
51
|
-
|
57
|
+
|
52
58
|
class Resource
|
53
59
|
required ::Protobuf::Field::StringField, :name, 1
|
54
60
|
optional ::Protobuf::Field::Int64Field, :date_created, 2
|
55
61
|
optional ::Test::StatusType, :status, 3
|
56
62
|
repeated ::Test::StatusType, :repeated_enum, 4
|
57
|
-
|
58
63
|
# Extension Fields
|
59
64
|
extensions 100...536870912
|
60
65
|
optional ::Protobuf::Field::BoolField, :ext_is_searchable, 100, :extension => true
|
@@ -63,42 +68,41 @@ module Test
|
|
63
68
|
optional ::Protobuf::Field::BoolField, :ext_nested_in_level_one, 105, :extension => true
|
64
69
|
optional ::Protobuf::Field::BoolField, :ext_dup_field, 106, :extension => true
|
65
70
|
end
|
66
|
-
|
71
|
+
|
67
72
|
class MessageParent
|
68
73
|
class MessageChild
|
69
74
|
optional ::Protobuf::Field::StringField, :child1, 1
|
70
75
|
end
|
71
|
-
|
76
|
+
|
72
77
|
end
|
73
|
-
|
78
|
+
|
74
79
|
class Nested
|
75
80
|
class NestedLevelOne
|
76
81
|
optional ::Protobuf::Field::BoolField, :level_one, 1, :default => true
|
77
|
-
|
78
82
|
# Extension Fields
|
79
83
|
extensions 100...102
|
80
84
|
optional ::Protobuf::Field::BoolField, :ext_nested_level_one_outer, 101, :extension => true
|
81
85
|
optional ::Protobuf::Field::BoolField, :ext_nested_level_one, 100, :extension => true
|
82
86
|
end
|
83
|
-
|
87
|
+
|
84
88
|
optional ::Protobuf::Field::StringField, :name, 1
|
85
89
|
optional ::Test::Resource, :resource, 2
|
86
90
|
repeated ::Test::Resource, :multiple_resources, 3
|
87
91
|
optional ::Test::StatusType, :status, 4
|
88
|
-
|
89
92
|
# Extension Fields
|
90
93
|
extensions 100...111
|
91
94
|
optional ::Protobuf::Field::StringField, :foo, 100, :extension => true
|
92
95
|
optional ::Protobuf::Field::Int64Field, :bar, 101, :extension => true
|
93
96
|
end
|
94
|
-
|
95
|
-
|
97
|
+
|
98
|
+
|
96
99
|
##
|
97
|
-
#
|
100
|
+
# Service Classes
|
98
101
|
#
|
99
102
|
class ResourceService < ::Protobuf::Rpc::Service
|
100
103
|
rpc :find, ::Test::ResourceFindRequest, ::Test::Resource
|
101
104
|
rpc :find_with_sleep, ::Test::ResourceSleepRequest, ::Test::Resource
|
102
105
|
end
|
106
|
+
|
103
107
|
end
|
104
108
|
|
metadata
CHANGED
@@ -1,343 +1,200 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: protobuf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.8.0
|
5
|
-
prerelease: 6
|
4
|
+
version: 2.8.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- BJ Neilsen
|
9
8
|
- Brandon Dewitt
|
9
|
+
- Devin Christensen
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-
|
13
|
+
date: 2013-08-21 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
|
-
none: false
|
19
18
|
requirements:
|
20
|
-
- -
|
19
|
+
- - <
|
21
20
|
- !ruby/object:Gem::Version
|
22
|
-
version: '0'
|
21
|
+
version: '4.0'
|
23
22
|
type: :runtime
|
24
23
|
prerelease: false
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
none: false
|
27
25
|
requirements:
|
28
|
-
- -
|
26
|
+
- - <
|
29
27
|
- !ruby/object:Gem::Version
|
30
|
-
version: '0'
|
31
|
-
- !ruby/object:Gem::Dependency
|
32
|
-
name: ffi
|
33
|
-
requirement: !ruby/object:Gem::Requirement
|
34
|
-
none: false
|
35
|
-
requirements:
|
36
|
-
- - ! '>='
|
37
|
-
- !ruby/object:Gem::Version
|
38
|
-
version: '0'
|
39
|
-
type: :runtime
|
40
|
-
prerelease: false
|
41
|
-
version_requirements: !ruby/object:Gem::Requirement
|
42
|
-
none: false
|
43
|
-
requirements:
|
44
|
-
- - ! '>='
|
45
|
-
- !ruby/object:Gem::Version
|
46
|
-
version: '0'
|
28
|
+
version: '4.0'
|
47
29
|
- !ruby/object:Gem::Dependency
|
48
30
|
name: multi_json
|
49
31
|
requirement: !ruby/object:Gem::Requirement
|
50
|
-
none: false
|
51
32
|
requirements:
|
52
|
-
- -
|
33
|
+
- - '>='
|
53
34
|
- !ruby/object:Gem::Version
|
54
35
|
version: '0'
|
55
36
|
type: :runtime
|
56
37
|
prerelease: false
|
57
38
|
version_requirements: !ruby/object:Gem::Requirement
|
58
|
-
none: false
|
59
39
|
requirements:
|
60
|
-
- -
|
40
|
+
- - '>='
|
61
41
|
- !ruby/object:Gem::Version
|
62
42
|
version: '0'
|
63
43
|
- !ruby/object:Gem::Dependency
|
64
44
|
name: thor
|
65
45
|
requirement: !ruby/object:Gem::Requirement
|
66
|
-
none: false
|
67
46
|
requirements:
|
68
|
-
- -
|
47
|
+
- - '>='
|
69
48
|
- !ruby/object:Gem::Version
|
70
49
|
version: '0'
|
71
50
|
type: :runtime
|
72
51
|
prerelease: false
|
73
52
|
version_requirements: !ruby/object:Gem::Requirement
|
74
|
-
none: false
|
75
53
|
requirements:
|
76
|
-
- -
|
54
|
+
- - '>='
|
77
55
|
- !ruby/object:Gem::Version
|
78
56
|
version: '0'
|
79
57
|
- !ruby/object:Gem::Dependency
|
80
58
|
name: eventmachine
|
81
59
|
requirement: !ruby/object:Gem::Requirement
|
82
|
-
none: false
|
83
60
|
requirements:
|
84
|
-
- -
|
61
|
+
- - '>='
|
85
62
|
- !ruby/object:Gem::Version
|
86
63
|
version: '0'
|
87
64
|
type: :development
|
88
65
|
prerelease: false
|
89
66
|
version_requirements: !ruby/object:Gem::Requirement
|
90
|
-
none: false
|
91
67
|
requirements:
|
92
|
-
- -
|
68
|
+
- - '>='
|
93
69
|
- !ruby/object:Gem::Version
|
94
70
|
version: '0'
|
95
71
|
- !ruby/object:Gem::Dependency
|
96
72
|
name: ffi-rzmq
|
97
73
|
requirement: !ruby/object:Gem::Requirement
|
98
|
-
none: false
|
99
|
-
requirements:
|
100
|
-
- - ! '>='
|
101
|
-
- !ruby/object:Gem::Version
|
102
|
-
version: '0'
|
103
|
-
type: :development
|
104
|
-
prerelease: false
|
105
|
-
version_requirements: !ruby/object:Gem::Requirement
|
106
|
-
none: false
|
107
|
-
requirements:
|
108
|
-
- - ! '>='
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: pry
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
none: false
|
115
74
|
requirements:
|
116
|
-
- -
|
75
|
+
- - '>='
|
117
76
|
- !ruby/object:Gem::Version
|
118
77
|
version: '0'
|
119
78
|
type: :development
|
120
79
|
prerelease: false
|
121
80
|
version_requirements: !ruby/object:Gem::Requirement
|
122
|
-
none: false
|
123
81
|
requirements:
|
124
|
-
- -
|
82
|
+
- - '>='
|
125
83
|
- !ruby/object:Gem::Version
|
126
84
|
version: '0'
|
127
85
|
- !ruby/object:Gem::Dependency
|
128
86
|
name: pry-nav
|
129
87
|
requirement: !ruby/object:Gem::Requirement
|
130
|
-
none: false
|
131
88
|
requirements:
|
132
|
-
- -
|
89
|
+
- - '>='
|
133
90
|
- !ruby/object:Gem::Version
|
134
91
|
version: '0'
|
135
92
|
type: :development
|
136
93
|
prerelease: false
|
137
94
|
version_requirements: !ruby/object:Gem::Requirement
|
138
|
-
none: false
|
139
95
|
requirements:
|
140
|
-
- -
|
96
|
+
- - '>='
|
141
97
|
- !ruby/object:Gem::Version
|
142
98
|
version: '0'
|
143
99
|
- !ruby/object:Gem::Dependency
|
144
100
|
name: rake
|
145
101
|
requirement: !ruby/object:Gem::Requirement
|
146
|
-
none: false
|
147
102
|
requirements:
|
148
|
-
- -
|
103
|
+
- - '>='
|
149
104
|
- !ruby/object:Gem::Version
|
150
105
|
version: '0'
|
151
106
|
type: :development
|
152
107
|
prerelease: false
|
153
108
|
version_requirements: !ruby/object:Gem::Requirement
|
154
|
-
none: false
|
155
109
|
requirements:
|
156
|
-
- -
|
110
|
+
- - '>='
|
157
111
|
- !ruby/object:Gem::Version
|
158
112
|
version: '0'
|
159
113
|
- !ruby/object:Gem::Dependency
|
160
114
|
name: rake-compiler
|
161
115
|
requirement: !ruby/object:Gem::Requirement
|
162
|
-
none: false
|
163
116
|
requirements:
|
164
|
-
- -
|
117
|
+
- - '>='
|
165
118
|
- !ruby/object:Gem::Version
|
166
119
|
version: '0'
|
167
120
|
type: :development
|
168
121
|
prerelease: false
|
169
122
|
version_requirements: !ruby/object:Gem::Requirement
|
170
|
-
none: false
|
171
123
|
requirements:
|
172
|
-
- -
|
124
|
+
- - '>='
|
173
125
|
- !ruby/object:Gem::Version
|
174
126
|
version: '0'
|
175
127
|
- !ruby/object:Gem::Dependency
|
176
128
|
name: rspec
|
177
129
|
requirement: !ruby/object:Gem::Requirement
|
178
|
-
none: false
|
179
130
|
requirements:
|
180
|
-
- -
|
131
|
+
- - '>='
|
181
132
|
- !ruby/object:Gem::Version
|
182
133
|
version: '0'
|
183
134
|
type: :development
|
184
135
|
prerelease: false
|
185
136
|
version_requirements: !ruby/object:Gem::Requirement
|
186
|
-
none: false
|
187
137
|
requirements:
|
188
|
-
- -
|
138
|
+
- - '>='
|
189
139
|
- !ruby/object:Gem::Version
|
190
140
|
version: '0'
|
191
141
|
- !ruby/object:Gem::Dependency
|
192
142
|
name: simplecov
|
193
143
|
requirement: !ruby/object:Gem::Requirement
|
194
|
-
none: false
|
195
144
|
requirements:
|
196
|
-
- -
|
145
|
+
- - '>='
|
197
146
|
- !ruby/object:Gem::Version
|
198
147
|
version: '0'
|
199
148
|
type: :development
|
200
149
|
prerelease: false
|
201
150
|
version_requirements: !ruby/object:Gem::Requirement
|
202
|
-
none: false
|
203
151
|
requirements:
|
204
|
-
- -
|
152
|
+
- - '>='
|
205
153
|
- !ruby/object:Gem::Version
|
206
154
|
version: '0'
|
207
155
|
- !ruby/object:Gem::Dependency
|
208
156
|
name: yard
|
209
157
|
requirement: !ruby/object:Gem::Requirement
|
210
|
-
none: false
|
211
158
|
requirements:
|
212
|
-
- -
|
159
|
+
- - '>='
|
213
160
|
- !ruby/object:Gem::Version
|
214
161
|
version: '0'
|
215
162
|
type: :development
|
216
163
|
prerelease: false
|
217
164
|
version_requirements: !ruby/object:Gem::Requirement
|
218
|
-
none: false
|
219
165
|
requirements:
|
220
|
-
- -
|
166
|
+
- - '>='
|
221
167
|
- !ruby/object:Gem::Version
|
222
168
|
version: '0'
|
223
|
-
description: Google Protocol Buffers
|
224
|
-
Ruby.
|
169
|
+
description: Google Protocol Buffers serialization and RPC implementation for Ruby.
|
225
170
|
email:
|
226
171
|
- bj.neilsen+protobuf@gmail.com
|
227
172
|
- brandonsdewitt+protobuf@gmail.com
|
173
|
+
- quixoten@gmail.com
|
228
174
|
executables:
|
175
|
+
- protoc-gen-ruby
|
229
176
|
- rpc_server
|
230
177
|
- rprotoc
|
231
|
-
extensions:
|
232
|
-
- ext/ruby_generator/extconf.rb
|
178
|
+
extensions: []
|
233
179
|
extra_rdoc_files: []
|
234
180
|
files:
|
235
181
|
- .gitignore
|
236
182
|
- .travis.yml
|
237
183
|
- .yardopts
|
184
|
+
- CHANGES.md
|
238
185
|
- CONTRIBUTING.md
|
239
186
|
- Gemfile
|
187
|
+
- LICENSE.txt
|
240
188
|
- README.md
|
241
189
|
- Rakefile
|
242
|
-
-
|
190
|
+
- bin/protoc-gen-ruby
|
243
191
|
- bin/rpc_server
|
244
192
|
- bin/rprotoc
|
245
|
-
- examples/addressbook.pb.rb
|
246
|
-
- examples/addressbook.proto
|
247
|
-
- examples/reading_a_message.rb
|
248
|
-
- examples/writing_a_message.rb
|
249
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/code_generator.h
|
250
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/command_line_interface.h
|
251
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_enum.h
|
252
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_enum_field.h
|
253
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_extension.h
|
254
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_field.h
|
255
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_file.h
|
256
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_generator.h
|
257
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_helpers.h
|
258
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_message.h
|
259
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_message_field.h
|
260
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_primitive_field.h
|
261
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_service.h
|
262
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_string_field.h
|
263
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/cpp/cpp_test_bad_identifiers.pb.h
|
264
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/importer.h
|
265
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_enum.h
|
266
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_enum_field.h
|
267
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_extension.h
|
268
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_field.h
|
269
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_file.h
|
270
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_generator.h
|
271
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_helpers.h
|
272
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_message.h
|
273
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_message_field.h
|
274
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_primitive_field.h
|
275
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_service.h
|
276
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/java/java_string_field.h
|
277
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/mock_code_generator.h
|
278
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/package_info.h
|
279
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/parser.h
|
280
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/plugin.h
|
281
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/plugin.pb.h
|
282
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/python/python_generator.h
|
283
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/subprocess.h
|
284
|
-
- ext/protobuf-2.4.1/src/google/protobuf/compiler/zip_writer.h
|
285
|
-
- ext/protobuf-2.4.1/src/google/protobuf/descriptor.h
|
286
|
-
- ext/protobuf-2.4.1/src/google/protobuf/descriptor.pb.h
|
287
|
-
- ext/protobuf-2.4.1/src/google/protobuf/descriptor_database.h
|
288
|
-
- ext/protobuf-2.4.1/src/google/protobuf/dynamic_message.h
|
289
|
-
- ext/protobuf-2.4.1/src/google/protobuf/extension_set.h
|
290
|
-
- ext/protobuf-2.4.1/src/google/protobuf/generated_message_reflection.h
|
291
|
-
- ext/protobuf-2.4.1/src/google/protobuf/generated_message_util.h
|
292
|
-
- ext/protobuf-2.4.1/src/google/protobuf/io/coded_stream.h
|
293
|
-
- ext/protobuf-2.4.1/src/google/protobuf/io/coded_stream_inl.h
|
294
|
-
- ext/protobuf-2.4.1/src/google/protobuf/io/gzip_stream.h
|
295
|
-
- ext/protobuf-2.4.1/src/google/protobuf/io/package_info.h
|
296
|
-
- ext/protobuf-2.4.1/src/google/protobuf/io/printer.h
|
297
|
-
- ext/protobuf-2.4.1/src/google/protobuf/io/tokenizer.h
|
298
|
-
- ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream.h
|
299
|
-
- ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream_impl.h
|
300
|
-
- ext/protobuf-2.4.1/src/google/protobuf/io/zero_copy_stream_impl_lite.h
|
301
|
-
- ext/protobuf-2.4.1/src/google/protobuf/message.h
|
302
|
-
- ext/protobuf-2.4.1/src/google/protobuf/message_lite.h
|
303
|
-
- ext/protobuf-2.4.1/src/google/protobuf/package_info.h
|
304
|
-
- ext/protobuf-2.4.1/src/google/protobuf/reflection_ops.h
|
305
|
-
- ext/protobuf-2.4.1/src/google/protobuf/repeated_field.h
|
306
|
-
- ext/protobuf-2.4.1/src/google/protobuf/service.h
|
307
|
-
- ext/protobuf-2.4.1/src/google/protobuf/stubs/common.h
|
308
|
-
- ext/protobuf-2.4.1/src/google/protobuf/stubs/hash.h
|
309
|
-
- ext/protobuf-2.4.1/src/google/protobuf/stubs/map-util.h
|
310
|
-
- ext/protobuf-2.4.1/src/google/protobuf/stubs/once.h
|
311
|
-
- ext/protobuf-2.4.1/src/google/protobuf/stubs/stl_util-inl.h
|
312
|
-
- ext/protobuf-2.4.1/src/google/protobuf/stubs/strutil.h
|
313
|
-
- ext/protobuf-2.4.1/src/google/protobuf/stubs/substitute.h
|
314
|
-
- ext/protobuf-2.4.1/src/google/protobuf/test_util.h
|
315
|
-
- ext/protobuf-2.4.1/src/google/protobuf/test_util_lite.h
|
316
|
-
- ext/protobuf-2.4.1/src/google/protobuf/testing/file.h
|
317
|
-
- ext/protobuf-2.4.1/src/google/protobuf/testing/googletest.h
|
318
|
-
- ext/protobuf-2.4.1/src/google/protobuf/text_format.h
|
319
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest.pb.h
|
320
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_custom_options.pb.h
|
321
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_embed_optimize_for.pb.h
|
322
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_empty.pb.h
|
323
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_import.pb.h
|
324
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_import_lite.pb.h
|
325
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_lite.pb.h
|
326
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_lite_imports_nonlite.pb.h
|
327
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_mset.pb.h
|
328
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_no_generic_services.pb.h
|
329
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unittest_optimize_for.pb.h
|
330
|
-
- ext/protobuf-2.4.1/src/google/protobuf/unknown_field_set.h
|
331
|
-
- ext/protobuf-2.4.1/src/google/protobuf/wire_format.h
|
332
|
-
- ext/protobuf-2.4.1/src/google/protobuf/wire_format_lite.h
|
333
|
-
- ext/protobuf-2.4.1/src/google/protobuf/wire_format_lite_inl.h
|
334
|
-
- ext/ruby_generator/Makefile
|
335
|
-
- ext/ruby_generator/RubyGenerator.cpp
|
336
|
-
- ext/ruby_generator/RubyGenerator.h
|
337
|
-
- ext/ruby_generator/extconf.rb
|
338
|
-
- ext/ruby_generator/protoc-ruby
|
339
193
|
- lib/protobuf.rb
|
340
194
|
- lib/protobuf/cli.rb
|
195
|
+
- lib/protobuf/code_generator.rb
|
196
|
+
- lib/protobuf/descriptors/google/protobuf/compiler/plugin.pb.rb
|
197
|
+
- lib/protobuf/descriptors/google/protobuf/descriptor.pb.rb
|
341
198
|
- lib/protobuf/enum.rb
|
342
199
|
- lib/protobuf/enum_value.rb
|
343
200
|
- lib/protobuf/evented.rb
|
@@ -367,6 +224,15 @@ files:
|
|
367
224
|
- lib/protobuf/field/uint32_field.rb
|
368
225
|
- lib/protobuf/field/uint64_field.rb
|
369
226
|
- lib/protobuf/field/varint_field.rb
|
227
|
+
- lib/protobuf/generators/base.rb
|
228
|
+
- lib/protobuf/generators/enum_generator.rb
|
229
|
+
- lib/protobuf/generators/extension_generator.rb
|
230
|
+
- lib/protobuf/generators/field_generator.rb
|
231
|
+
- lib/protobuf/generators/file_generator.rb
|
232
|
+
- lib/protobuf/generators/group_generator.rb
|
233
|
+
- lib/protobuf/generators/message_generator.rb
|
234
|
+
- lib/protobuf/generators/printable.rb
|
235
|
+
- lib/protobuf/generators/service_generator.rb
|
370
236
|
- lib/protobuf/lifecycle.rb
|
371
237
|
- lib/protobuf/logger.rb
|
372
238
|
- lib/protobuf/message.rb
|
@@ -407,17 +273,32 @@ files:
|
|
407
273
|
- lib/protobuf/wire_type.rb
|
408
274
|
- lib/protobuf/zmq.rb
|
409
275
|
- proto/dynamic_discovery.proto
|
276
|
+
- proto/google/protobuf/compiler/plugin.proto
|
277
|
+
- proto/google/protobuf/descriptor.proto
|
410
278
|
- proto/rpc.proto
|
411
279
|
- protobuf.gemspec
|
412
280
|
- spec/benchmark/tasks.rb
|
281
|
+
- spec/bin/protoc-gen-ruby_spec.rb
|
282
|
+
- spec/data/data.bin
|
283
|
+
- spec/data/types.bin
|
284
|
+
- spec/encoding/all_types_spec.rb
|
285
|
+
- spec/encoding/extreme_values_spec.rb
|
413
286
|
- spec/functional/embedded_service_spec.rb
|
414
287
|
- spec/functional/evented_server_spec.rb
|
415
288
|
- spec/functional/socket_server_spec.rb
|
416
289
|
- spec/functional/zmq_server_spec.rb
|
417
290
|
- spec/lib/protobuf/cli_spec.rb
|
291
|
+
- spec/lib/protobuf/code_generator_spec.rb
|
418
292
|
- spec/lib/protobuf/enum_spec.rb
|
419
293
|
- spec/lib/protobuf/enum_value_spec.rb
|
420
294
|
- spec/lib/protobuf/field/int32_field_spec.rb
|
295
|
+
- spec/lib/protobuf/generators/base_spec.rb
|
296
|
+
- spec/lib/protobuf/generators/enum_generator_spec.rb
|
297
|
+
- spec/lib/protobuf/generators/extension_generator_spec.rb
|
298
|
+
- spec/lib/protobuf/generators/field_generator_spec.rb
|
299
|
+
- spec/lib/protobuf/generators/file_generator_spec.rb
|
300
|
+
- spec/lib/protobuf/generators/message_generator_spec.rb
|
301
|
+
- spec/lib/protobuf/generators/service_generator_spec.rb
|
421
302
|
- spec/lib/protobuf/lifecycle_spec.rb
|
422
303
|
- spec/lib/protobuf/logger_spec.rb
|
423
304
|
- spec/lib/protobuf/message_spec.rb
|
@@ -441,10 +322,21 @@ files:
|
|
441
322
|
- spec/support/all.rb
|
442
323
|
- spec/support/packed_field.rb
|
443
324
|
- spec/support/server.rb
|
325
|
+
- spec/support/test/all_types.data.bin
|
326
|
+
- spec/support/test/all_types.data.txt
|
327
|
+
- spec/support/test/defaults.pb.rb
|
328
|
+
- spec/support/test/defaults.proto
|
444
329
|
- spec/support/test/enum.pb.rb
|
445
330
|
- spec/support/test/enum.proto
|
446
331
|
- spec/support/test/extended.pb.rb
|
447
332
|
- spec/support/test/extended.proto
|
333
|
+
- spec/support/test/extreme_values.data.bin
|
334
|
+
- spec/support/test/google_unittest.pb.rb
|
335
|
+
- spec/support/test/google_unittest.proto
|
336
|
+
- spec/support/test/google_unittest_import.pb.rb
|
337
|
+
- spec/support/test/google_unittest_import.proto
|
338
|
+
- spec/support/test/google_unittest_import_public.pb.rb
|
339
|
+
- spec/support/test/google_unittest_import_public.proto
|
448
340
|
- spec/support/test/multi_field_extensions.pb.rb
|
449
341
|
- spec/support/test/multi_field_extensions.proto
|
450
342
|
- spec/support/test/resource.pb.rb
|
@@ -452,75 +344,96 @@ files:
|
|
452
344
|
- spec/support/test/resource_service.rb
|
453
345
|
- spec/support/test_app_file.rb
|
454
346
|
- spec/support/tolerance_matcher.rb
|
455
|
-
- test/data/data.bin
|
456
|
-
- test/data/data_source.py
|
457
|
-
- test/data/types.bin
|
458
|
-
- test/data/types_source.py
|
459
|
-
- test/data/unk.png
|
460
|
-
- test/proto/addressbook.pb.rb
|
461
|
-
- test/proto/addressbook.proto
|
462
|
-
- test/proto/addressbook_base.pb.rb
|
463
|
-
- test/proto/addressbook_base.proto
|
464
|
-
- test/proto/addressbook_ext.pb.rb
|
465
|
-
- test/proto/addressbook_ext.proto
|
466
|
-
- test/proto/collision.pb.rb
|
467
|
-
- test/proto/collision.proto
|
468
|
-
- test/proto/ext_collision.pb.rb
|
469
|
-
- test/proto/ext_collision.proto
|
470
|
-
- test/proto/ext_range.pb.rb
|
471
|
-
- test/proto/ext_range.proto
|
472
|
-
- test/proto/float_default.proto
|
473
|
-
- test/proto/lowercase.pb.rb
|
474
|
-
- test/proto/lowercase.proto
|
475
|
-
- test/proto/merge.pb.rb
|
476
|
-
- test/proto/merge.proto
|
477
|
-
- test/proto/nested.pb.rb
|
478
|
-
- test/proto/nested.proto
|
479
|
-
- test/proto/optional_field.pb.rb
|
480
|
-
- test/proto/optional_field.proto
|
481
|
-
- test/proto/packed.pb.rb
|
482
|
-
- test/proto/packed.proto
|
483
|
-
- test/proto/rpc.proto
|
484
|
-
- test/proto/types.pb.rb
|
485
|
-
- test/proto/types.proto
|
486
|
-
- test/test_addressbook.rb
|
487
|
-
- test/test_enum_value.rb
|
488
|
-
- test/test_extension.rb
|
489
|
-
- test/test_lowercase.rb
|
490
|
-
- test/test_message.rb
|
491
|
-
- test/test_optional_field.rb
|
492
|
-
- test/test_packed_field.rb
|
493
|
-
- test/test_parse.rb
|
494
|
-
- test/test_repeated_types.rb
|
495
|
-
- test/test_serialize.rb
|
496
|
-
- test/test_standard_message.rb
|
497
|
-
- test/test_types.rb
|
498
347
|
homepage: https://github.com/localshred/protobuf
|
499
|
-
licenses:
|
348
|
+
licenses:
|
349
|
+
- WTFPL
|
350
|
+
metadata: {}
|
500
351
|
post_install_message:
|
501
352
|
rdoc_options: []
|
502
353
|
require_paths:
|
503
354
|
- lib
|
504
355
|
required_ruby_version: !ruby/object:Gem::Requirement
|
505
|
-
none: false
|
506
356
|
requirements:
|
507
|
-
- -
|
357
|
+
- - '>='
|
508
358
|
- !ruby/object:Gem::Version
|
509
359
|
version: '0'
|
510
|
-
segments:
|
511
|
-
- 0
|
512
|
-
hash: 3723502328517629432
|
513
360
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
514
|
-
none: false
|
515
361
|
requirements:
|
516
|
-
- -
|
362
|
+
- - '>='
|
517
363
|
- !ruby/object:Gem::Version
|
518
|
-
version:
|
364
|
+
version: '0'
|
519
365
|
requirements: []
|
520
366
|
rubyforge_project:
|
521
|
-
rubygems_version:
|
367
|
+
rubygems_version: 2.0.2
|
522
368
|
signing_key:
|
523
|
-
specification_version:
|
524
|
-
summary: Google Protocol Buffers
|
525
|
-
test_files:
|
369
|
+
specification_version: 4
|
370
|
+
summary: Google Protocol Buffers serialization and RPC implementation for Ruby.
|
371
|
+
test_files:
|
372
|
+
- spec/benchmark/tasks.rb
|
373
|
+
- spec/bin/protoc-gen-ruby_spec.rb
|
374
|
+
- spec/data/data.bin
|
375
|
+
- spec/data/types.bin
|
376
|
+
- spec/encoding/all_types_spec.rb
|
377
|
+
- spec/encoding/extreme_values_spec.rb
|
378
|
+
- spec/functional/embedded_service_spec.rb
|
379
|
+
- spec/functional/evented_server_spec.rb
|
380
|
+
- spec/functional/socket_server_spec.rb
|
381
|
+
- spec/functional/zmq_server_spec.rb
|
382
|
+
- spec/lib/protobuf/cli_spec.rb
|
383
|
+
- spec/lib/protobuf/code_generator_spec.rb
|
384
|
+
- spec/lib/protobuf/enum_spec.rb
|
385
|
+
- spec/lib/protobuf/enum_value_spec.rb
|
386
|
+
- spec/lib/protobuf/field/int32_field_spec.rb
|
387
|
+
- spec/lib/protobuf/generators/base_spec.rb
|
388
|
+
- spec/lib/protobuf/generators/enum_generator_spec.rb
|
389
|
+
- spec/lib/protobuf/generators/extension_generator_spec.rb
|
390
|
+
- spec/lib/protobuf/generators/field_generator_spec.rb
|
391
|
+
- spec/lib/protobuf/generators/file_generator_spec.rb
|
392
|
+
- spec/lib/protobuf/generators/message_generator_spec.rb
|
393
|
+
- spec/lib/protobuf/generators/service_generator_spec.rb
|
394
|
+
- spec/lib/protobuf/lifecycle_spec.rb
|
395
|
+
- spec/lib/protobuf/logger_spec.rb
|
396
|
+
- spec/lib/protobuf/message_spec.rb
|
397
|
+
- spec/lib/protobuf/rpc/client_spec.rb
|
398
|
+
- spec/lib/protobuf/rpc/connector_spec.rb
|
399
|
+
- spec/lib/protobuf/rpc/connectors/base_spec.rb
|
400
|
+
- spec/lib/protobuf/rpc/connectors/common_spec.rb
|
401
|
+
- spec/lib/protobuf/rpc/connectors/socket_spec.rb
|
402
|
+
- spec/lib/protobuf/rpc/connectors/zmq_spec.rb
|
403
|
+
- spec/lib/protobuf/rpc/servers/evented_server_spec.rb
|
404
|
+
- spec/lib/protobuf/rpc/servers/socket_server_spec.rb
|
405
|
+
- spec/lib/protobuf/rpc/servers/zmq/server_spec.rb
|
406
|
+
- spec/lib/protobuf/rpc/servers/zmq/util_spec.rb
|
407
|
+
- spec/lib/protobuf/rpc/servers/zmq/worker_spec.rb
|
408
|
+
- spec/lib/protobuf/rpc/service_directory_spec.rb
|
409
|
+
- spec/lib/protobuf/rpc/service_dispatcher_spec.rb
|
410
|
+
- spec/lib/protobuf/rpc/service_filters_spec.rb
|
411
|
+
- spec/lib/protobuf/rpc/service_spec.rb
|
412
|
+
- spec/lib/protobuf_spec.rb
|
413
|
+
- spec/spec_helper.rb
|
414
|
+
- spec/support/all.rb
|
415
|
+
- spec/support/packed_field.rb
|
416
|
+
- spec/support/server.rb
|
417
|
+
- spec/support/test/all_types.data.bin
|
418
|
+
- spec/support/test/all_types.data.txt
|
419
|
+
- spec/support/test/defaults.pb.rb
|
420
|
+
- spec/support/test/defaults.proto
|
421
|
+
- spec/support/test/enum.pb.rb
|
422
|
+
- spec/support/test/enum.proto
|
423
|
+
- spec/support/test/extended.pb.rb
|
424
|
+
- spec/support/test/extended.proto
|
425
|
+
- spec/support/test/extreme_values.data.bin
|
426
|
+
- spec/support/test/google_unittest.pb.rb
|
427
|
+
- spec/support/test/google_unittest.proto
|
428
|
+
- spec/support/test/google_unittest_import.pb.rb
|
429
|
+
- spec/support/test/google_unittest_import.proto
|
430
|
+
- spec/support/test/google_unittest_import_public.pb.rb
|
431
|
+
- spec/support/test/google_unittest_import_public.proto
|
432
|
+
- spec/support/test/multi_field_extensions.pb.rb
|
433
|
+
- spec/support/test/multi_field_extensions.proto
|
434
|
+
- spec/support/test/resource.pb.rb
|
435
|
+
- spec/support/test/resource.proto
|
436
|
+
- spec/support/test/resource_service.rb
|
437
|
+
- spec/support/test_app_file.rb
|
438
|
+
- spec/support/tolerance_matcher.rb
|
526
439
|
has_rdoc:
|