aboutsummaryrefslogtreecommitdiff
path: root/ruby/ext/google/protobuf_c/protobuf.h
diff options
context:
space:
mode:
authorChris Fallin <cfallin@c1f.net>2015-05-15 10:52:56 -0700
committerChris Fallin <cfallin@c1f.net>2015-05-15 10:52:56 -0700
commita526605aec4358e948bde0a8ad63f5f1de6f2cb5 (patch)
treecc64517d7e1d38f72779f963294b36f78431d7a4 /ruby/ext/google/protobuf_c/protobuf.h
parent09e584b57aaa8e3e5c45162a8bdbc1d1864a8f5a (diff)
parentd1b52a00e002fd7a4adbcdeafa0634de6088a88f (diff)
downloadprotobuf-a526605aec4358e948bde0a8ad63f5f1de6f2cb5.tar.gz
protobuf-a526605aec4358e948bde0a8ad63f5f1de6f2cb5.tar.bz2
protobuf-a526605aec4358e948bde0a8ad63f5f1de6f2cb5.zip
Merge pull request #338 from skippy/encode-decode-helpers
ruby: Encode decode cleanup and behavior normalization
Diffstat (limited to 'ruby/ext/google/protobuf_c/protobuf.h')
-rw-r--r--ruby/ext/google/protobuf_c/protobuf.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/ruby/ext/google/protobuf_c/protobuf.h b/ruby/ext/google/protobuf_c/protobuf.h
index 985b7f3d..f9a0f958 100644
--- a/ruby/ext/google/protobuf_c/protobuf.h
+++ b/ruby/ext/google/protobuf_c/protobuf.h
@@ -374,6 +374,7 @@ VALUE RepeatedField_clear(VALUE _self);
VALUE RepeatedField_length(VALUE _self);
VALUE RepeatedField_dup(VALUE _self);
VALUE RepeatedField_deep_copy(VALUE _self);
+VALUE RepeatedField_to_ary(VALUE _self);
VALUE RepeatedField_eq(VALUE _self, VALUE _other);
VALUE RepeatedField_hash(VALUE _self);
VALUE RepeatedField_inspect(VALUE _self);
@@ -497,11 +498,6 @@ VALUE Message_encode(VALUE klass, VALUE msg_rb);
VALUE Message_decode_json(VALUE klass, VALUE data);
VALUE Message_encode_json(VALUE klass, VALUE msg_rb);
-VALUE Google_Protobuf_encode(VALUE self, VALUE msg_rb);
-VALUE Google_Protobuf_decode(VALUE self, VALUE klass, VALUE msg_rb);
-VALUE Google_Protobuf_encode_json(VALUE self, VALUE msg_rb);
-VALUE Google_Protobuf_decode_json(VALUE self, VALUE klass, VALUE msg_rb);
-
VALUE Google_Protobuf_deep_copy(VALUE self, VALUE obj);
VALUE build_module_from_enumdesc(EnumDescriptor* enumdef);