Chris Fallin 11ad1bd277 Update Ruby gem version to 3.0.0.alpha.2.0. 11 лет назад
..
ext db87a9c07a Merge pull request #211 from isaiah/map_inspect 11 лет назад
lib 91473dcebf Rename protobuf Ruby module to google/protobuf and rework its build 11 лет назад
tests db87a9c07a Merge pull request #211 from isaiah/map_inspect 11 лет назад
README.md 6ad8f547fe Updated Ruby README. 11 лет назад
Rakefile 91473dcebf Rename protobuf Ruby module to google/protobuf and rework its build 11 лет назад
google-protobuf.gemspec 11ad1bd277 Update Ruby gem version to 3.0.0.alpha.2.0. 11 лет назад

README.md

This directory contains the Ruby extension that implements Protocol Buffers functionality in Ruby.

The Ruby extension makes use of generated Ruby code that defines message and enum types in a Ruby DSL. You may write definitions in this DSL directly, but we recommend using protoc's Ruby generation support with .proto files. The build process in this directory only installs the extension; you need to install protoc as well to have Ruby code generation functionality.

Installation

To build this Ruby extension, you will need:

  • Rake
  • Bundler
  • Ruby development headers
  • a C compiler

First, install the required Ruby gems:

$ sudo gem install bundler rake rake-compiler rspec rubygems-tasks

Then build the Gem:

$ rake gem
$ gem install pkg/protobuf-$VERSION.gem

This gem includes the upb parsing and serialization library as a single-file amalgamation. It is up-to-date with upb git commit 535bc2fe2f2b467f59347ffc9449e11e47791257.