active_remote 3.3.0 → 3.3.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ea2e2dce8e74426f1b128de526fc94673e8fcb21e23fd61052519f13bf2eb98
|
4
|
+
data.tar.gz: b317461ce80a81012b55475147b6c746d2aa9708dedf8173631d21fda6c5950b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6db4dd2c80db0fbfbb768e90464cc900b77a9e490a647b922122adc254ded925ccfc1376e796460f988c690ce19c85f51149ae7015dd92a91d174d1e19933f70
|
7
|
+
data.tar.gz: 3ab7fb289b55326ebe7897189d205f03d6d3863c5d557d8768d4c84a6ee0c77ae8ca335bb0354be827d3920d83b7b88828a5c8cddb393b4f3948e28256e8d766
|
@@ -1,4 +1,9 @@
|
|
1
1
|
message Serializer {
|
2
|
+
enum Type {
|
3
|
+
DEFAULT = 0;
|
4
|
+
USER = 1;
|
5
|
+
}
|
6
|
+
|
2
7
|
optional bool bool_field = 1;
|
3
8
|
optional bytes bytes_field = 2;
|
4
9
|
optional double double_field = 3;
|
@@ -14,4 +19,5 @@ message Serializer {
|
|
14
19
|
optional string string_field = 13;
|
15
20
|
optional uint32 uint32_field = 14;
|
16
21
|
optional uint64 uint64_field = 15;
|
22
|
+
optional Type enum_field = 16;
|
17
23
|
}
|
@@ -9,7 +9,14 @@ require 'protobuf'
|
|
9
9
|
##
|
10
10
|
# Message Classes
|
11
11
|
#
|
12
|
-
class Serializer < ::Protobuf::Message
|
12
|
+
class Serializer < ::Protobuf::Message
|
13
|
+
class Type < ::Protobuf::Enum
|
14
|
+
define :DEFAULT, 0
|
15
|
+
define :USER, 1
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
13
20
|
|
14
21
|
|
15
22
|
##
|
@@ -31,5 +38,6 @@ class Serializer
|
|
31
38
|
optional :string, :string_field, 13
|
32
39
|
optional :uint32, :uint32_field, 14
|
33
40
|
optional :uint64, :uint64_field, 15
|
41
|
+
optional ::Serializer::Type, :enum_field, 16
|
34
42
|
end
|
35
43
|
|