Update Ruby basics to clearly state prerequisites (#881)

These are already covered in the quickstart, but as long as the
prerequisites are mentioned here, they should probably include both
necessary libraries instead of just one.

This commit also fixes two somewhat confusing typos at the end of the
sentence.
This commit is contained in:
Andy Mention 2022-04-06 14:31:37 -06:00 committed by GitHub
parent eaff59f00f
commit 4be043a5a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -137,9 +137,8 @@ Next we need to generate the gRPC client and server interfaces from our .proto
service definition. We do this using the protocol buffer compiler `protoc` with
a special gRPC Ruby plugin.
If you want to run this yourself, make sure you've installed protoc and followed
the gRPC Ruby plugin [installation
instructions](https://github.com/grpc/grpc/blob/{{< param grpc_vers.core >}}/src/ruby/README.md) first):
If you want to run this yourself, make sure you have installed
[gRPC](../quickstart/#grpc) and [protoc](../quickstart/#grpc-tools).
Once that's done, the following command can be used to generate the ruby code.