aboutsummaryrefslogtreecommitdiffhomepage
path: root/ruby/ext/google/protobuf_c/defs.c
Commit message (Collapse)AuthorAge
* Added Ruby to conformance tests.Gravatar Josh Haberman2015-07-16
| | | | | | | | | | | | | This involved fixing a few important bugs in the Ruby implementation -- mostly cases of mixing upb field types and descriptor types (upb field types do not distinguish between int/sint/fixed/sfixed like descriptor types do). Also added protobuf-specific exceptions so parse errors can be caught specifically. Change-Id: Ib49d3db976900b2c6f3455c8b88af52cfb86e036
* Fixed compiler warnings and added -std=c99.Gravatar Josh Haberman2015-06-09
| | | | | upb no longer requires -std=c99 but the Ruby/C code still uses C99 features.
* Ruby C extension speedup: don't re-intern constant string needlessly.Gravatar Chris Fallin2015-05-19
| | | | Also fixed lines with > 80 char length.
* Fixed issue #283: crash in JSON handler cleanup.Gravatar Chris Fallin2015-04-13
| | | | Includes repro test case from @wfarr.
* Addressed code-review comments.Gravatar Chris Fallin2015-01-26
|
* Addressed code-review comments.Gravatar Chris Fallin2015-01-14
|
* Support oneofs in MRI Ruby C extension.Gravatar Chris Fallin2015-01-14
|
* Addressed code-review comments.Gravatar Chris Fallin2015-01-09
|
* Addressed code-review comments.Gravatar Chris Fallin2015-01-06
|
* Support for maps in the MRI C Ruby extension.Gravatar Chris Fallin2015-01-06
| | | | | | | | This adds the Map container and support for parsing and serializing maps in the protobuf wire format (as defined by the C++ implementation, with MapEntry submessages in a repeated field). JSON map serialization/parsing are not yet supported as these will require some changes to upb as well.
* Rename protobuf Ruby module to google/protobuf and rework its buildGravatar Chris Fallin2014-12-12
system. The Ruby module build now uses an amalgamated distribution of upb, and successfully builds a Ruby gem called 'google-protobuf' with module 'google/protobuf'.