diff options
author | Tim Emiola <temiola@google.com> | 2015-02-19 10:04:04 -0800 |
---|---|---|
committer | Tim Emiola <temiola@google.com> | 2015-02-19 10:04:04 -0800 |
commit | 0e24d5b70f954d9799af181aba42c01022309ebb (patch) | |
tree | 8d0bd4e7b7418bbfabe2423872a277b77cb8d6fb /src | |
parent | c33efe4ad58a9d0fc2e60f19f59ba8c095020844 (diff) |
Fixes case, other minor corrections
Diffstat (limited to 'src')
-rwxr-xr-x | src/ruby/README.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ruby/README.md b/src/ruby/README.md index d9e33f87fa..42f307aa5d 100755 --- a/src/ruby/README.md +++ b/src/ruby/README.md @@ -7,14 +7,14 @@ A Ruby implementation of gRPC. INSTALLATION PREREQUISITES -------------------------- -This requires Ruby 2.x, as the rpc api surface uses keyword args. +This requires Ruby 2.x, as the RPC API surface uses keyword args. QUICK - INSTALL --------------- - Clone this repository. -- Follow the instructions in the [INSTALL](../../INSTALL) to install grpc C core library. +- Follow the instructions in [INSTALL](../../INSTALL) to install the gRPC C core. - Use bundler to install ```sh $ # from this directory @@ -24,8 +24,8 @@ $ gem install bundler && bundle install Installing from source ---------------------- -- Build or Install the gRPC core -E.g, from the root of the grpc [git repo](https://github.com/google/grpc) +- Build the gRPC C core +E.g, from the root of the gRPC [git repo](https://github.com/google/grpc) ```sh $ cd ../.. $ make && sudo make install @@ -46,7 +46,7 @@ $ # and that the rvm command is installed $ gem install bundler ``` -- Finally, install grpc ruby locally. +- Finally, install the gRPC gem locally. ```sh $ cd <install_dir> $ bundle install @@ -61,7 +61,7 @@ Directory structure is the layout for [ruby extensions](http://guides.rubygems.o - ext: the gRPC ruby extension - lib: - the entrypoint grpc ruby library to be used in a 'require' statement + the entrypoint gRPC ruby library to be used in a 'require' statement - spec: Rspec unittest - bin: |