Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Side by Side Diff: third_party/grpc/src/ruby/pb/README.md

Issue 1932353002: Initial checkin of gRPC to third_party/ Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 Protocol Buffers
2 ================
3
4 This folder contains protocol buffers provided with gRPC ruby, and the generated
5 code to them.
6
7 PREREQUISITES
8 -------------
9
10 The code is is generated using the protoc (> 3.0.0.alpha.1) and the
11 grpc_ruby_plugin. These must be installed to regenerate the IDL defined
12 classes, but that's not necessary just to use them.
13
14 health_check/v1
15 --------------------
16
17 This package defines the surface of a simple health check service that gRPC
18 servers may choose to implement, and provides an implementation for it. To
19 re-generate the surface.
20
21 ```bash
22 $ # (from this directory)
23 $ protoc -I ../../proto ../../proto/grpc/health/v1/health.proto \
24 --grpc_out=. \
25 --ruby_out=. \
26 --plugin=protoc-gen-grpc=`which grpc_ruby_plugin`
27 ```
28
29 test
30 ----
31
32 This package defines the surface of the gRPC interop test service and client
33 To re-generate the surface, it's necessary to have checked-out versions of
34 the grpc interop test proto, e.g, by having the full gRPC repository. E.g,
35
36 ```bash
37 $ # (from this directory within the grpc repo)
38 $ protoc -I../../.. ../../../test/proto/{messages,test,empty}.proto \
39 --grpc_out=. \
40 --ruby_out=. \
41 --plugin=protoc-gen-grpc=`which grpc_ruby_plugin`
42 ```
OLDNEW
« no previous file with comments | « third_party/grpc/src/ruby/lib/grpc/version.rb ('k') | third_party/grpc/src/ruby/pb/generate_proto_ruby.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698