ruby-protobuf icon indicating copy to clipboard operation
ruby-protobuf copied to clipboard

Protocol Buffers for Ruby: This repository is not maintained. Please use https://github.com/ruby-protobuf/protobuf

Results 11 ruby-protobuf issues
Sort by recently updated
recently updated
newest added

Hi Macks, I mentioned an issue in my pull request. This error has been present for a while but is really pronounced in the eval() done to verify that the...

I have a Ruby IDE for make game as client.Now I want to set up a server in java,After this,I want it can use google's protobuf to be a standard...

Adds "rake/generate_task" which can be used in a Rakefile as follows: ``` ruby Protobuf::GenerateTask.new("proto/*.proto") do |ruby_protobuf| spec.files

I am using ruby_protobuf version 0.4.11 and ruby 2.0.0p247. Given a proto file: ``` message Foo { } message Bar { optional Foo f = 1; } ``` Foo.merge_from() will...

In lib/protobuf/message/field.rb, there's some constants set up like this: ``` INT32_MAX = 2**31 - 1 INT32_MIN = -2**31 INT64_MAX = 2**63 - 1 INT64_MIN = -2**63 UINT32_MAX = 2**32 -...

Many .proto files I'm trying to compile fail with: `accept_message_visitor': NotImplementedError (NotImplementedError) Looking in the code, it seems like this was just left unfinished....? For an example .proto see http://code.google.com/p/android-market-api/source/browse/trunk/AndroidMarketApi/proto/market.proto

See https://github.com/localshred/protobuf/issues/16 for description and partial fixes. (Cross referencing.)

In the .proto file, the package name cannot be 'message', otherwise, it throws parsing error racc/parser.rb:347:in `on_error': (Racc::ParseError) parse error on value :message ("message") from proto.y:194:in`scan' from racc/parser.rb:152:in `_racc_yyparse_c' from...

I have written a ruby client which makes a REST call to a java server using the AddressBook example. When the protobuf in being deserialized by java, I am getting...

We are using for our protobuf service layer a java server and the ruby app we're running is the client. When doing a request from the ruby client, calling the...