ruby-protocol-buffers
ruby-protocol-buffers copied to clipboard
An implementation of Protocol Buffers for Ruby.
Hey! We're really needing the change a5de8281f0d4dda77320bfc0ff5c1516f0f1d7eb but it is not in 1.6.1 release yet. Could you please release new version from current master so we could just use normal...
Repro: https://github.com/sergiocampama/ruby_proto_repro, just run generate_proto.sh from inside the repo. What happens is that the MessageB gets added to the forward declaration, but its internal enums are not, so the subsequent...
Hi I am using this proto [https://github.com/PowerDNS/pdns/blob/master/pdns/dnsmessage.proto](https://github.com/PowerDNS/pdns/blob/master/pdns/dnsmessage.proto) which i compiled to give me the following `.rb.` ``` #!/usr/bin/env ruby # Generated by the protocol buffer compiler. DO NOT EDIT! require...
Here's an odd one that I'd love some feedback on: Attempting to squeeze extra performance out of an app, I moved it from MRI 2.1 to Rubinius 2.2.10. With a...
I'm implementing a client library for Mozilla Heka, and their [message.proto](https://github.com/mozilla-services/heka/blob/master/message/message.proto) contains a `fields` field to embed more `Field` message type. Although I don't agree with their decision, the ruby...
(copied from https://github.com/mozy/ruby-protocol-buffers/issues/6) $ gem install ruby-protocol-buffers $ ruby-protoc featureful.proto HOME_PATH/.rvm/gems/ruby-1.8.7-p334/gems/ruby-protocol-buffers-1.0.1/lib/protocol_buffers/compiler.rb:16:in `compile': 127 (ProtocolBuffers::CompileError) from HOME_PATH/.rvm/gems/ruby-1.8.7-p334/gems/ruby-protocol-buffers-1.0.1/bin/ruby-protoc:38 from HOME_PATH/.rvm/gems/ruby-1.8.7-p334/bin/ruby-protoc:19:in`load' from HOME_PATH/.rvm/gems/ruby-1.8.7-p334/bin/ruby-protoc:19 The featureful.proto file is taken straight from the current source...
(copied from https://github.com/mozy/ruby-protocol-buffers/issues/16) This relates to proto files that imports other proto files. My specific use case involves having a directory hierarchy that matches the namespace hierarchy. A short solution...