Sha256: b137d13134405e05dc6df6683c9812f56b2f061dda955e378b459306ac3a6d54

Contents?: true

Size: 1.21 KB

Versions: 15

Compression:

Stored size: 1.21 KB

Contents

Protocol Buffers
================

This folder contains protocol buffers provided with gRPC ruby, and the generated
code to them.

PREREQUISITES
-------------

The code is is generated using the protoc (> 3.0.0.alpha.1) and the
grpc_ruby_plugin.  These must be installed to regenerate the IDL defined
classes, but that's not necessary just to use them.

health_check/v1alpha
--------------------

This package defines the surface of a simple health check service that gRPC
servers may choose to implement, and provides an implementation for it. To
re-generate the surface.

```bash
$ # (from this directory)
$ protoc -I ../../proto ../../proto/grpc/health/v1alpha/health.proto \
    --grpc_out=. \
    --ruby_out=. \
    --plugin=protoc-gen-grpc=`which grpc_ruby_plugin`
```

test
----

This package defines the surface of the gRPC interop test service and client
To re-generate the surface, it's necessary to have checked-out versions of
the grpc interop test proto, e.g, by having the full gRPC repository. E.g,

```bash
$ # (from this directory within the grpc repo)
$ protoc -I../../.. ../../../test/proto/{messages,test,empty}.proto \
    --grpc_out=. \
    --ruby_out=. \
    --plugin=protoc-gen-grpc=`which grpc_ruby_plugin`
```

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
awesome-grpc-that-works-0.12.2 src/ruby/pb/README.md
awesome-grpc-that-works-0.12.1 src/ruby/pb/README.md
grpc-0.13.0-universal-darwin src/ruby/pb/README.md
grpc-0.13.0-x86-mingw32 src/ruby/pb/README.md
grpc-0.13.0-x86-linux src/ruby/pb/README.md
grpc-0.13.0-x86_64-linux src/ruby/pb/README.md
grpc-0.13.0-x64-mingw32 src/ruby/pb/README.md
grpc-0.13.0 src/ruby/pb/README.md
grpc-0.13.0.pre1.1-x86-mingw32 src/ruby/pb/README.md
grpc-0.13.0.pre1.1-x86-linux src/ruby/pb/README.md
grpc-0.13.0.pre1.1-x86_64-linux src/ruby/pb/README.md
grpc-0.13.0.pre1.1-x64-mingw32 src/ruby/pb/README.md
grpc-0.13.0.pre1.1-universal-darwin src/ruby/pb/README.md
grpc-0.13.0.pre1.1 src/ruby/pb/README.md
grpc-0.12.0 src/ruby/pb/README.md