Update installation instructions to mention debian binary install

pull/1275/head
Tim Emiola 10 years ago
parent 884d29725b
commit db9eb05eea
  1. 24
      src/ruby/README.md

@ -11,16 +11,19 @@ Alpha : Ready for early adopters
INSTALLATION PREREQUISITES INSTALLATION PREREQUISITES
-------------------------- --------------------------
This requires Ruby 2.1, as the RPC API surface uses keyword args. This requires Ruby 2.x, as the RPC API surface uses keyword args.
QUICK - INSTALL QUICK - INSTALL
--------------- ---------------
- Clone this repository. On debian linux systems, install from our released deb package.
- Follow the instructions in [INSTALL](../../INSTALL) to install the gRPC C core. Otherwise, install from source, as described below.
- If you don't have Ruby 2.1 installed, switch to the more detailed instructions below
- Use bundler to install $ wget https://github.com/grpc/grpc/releases/download/release-0_6_0/libgrpc_0.6.0_amd64.deb
$ wget https://github.com/grpc/grpc/releases/download/release-0_6_0/libgrpc-dev_0.6.0_amd64.deb
$ sudo dpkg -i libgrpc_0.6.0_amd64.deb libgrpc-dev_0.6.0_amd64.deb
```sh ```sh
$ # from this directory $ # from this directory
$ gem install bundler && bundle install $ gem install bundler && bundle install
@ -29,14 +32,9 @@ $ gem install bundler && bundle install
Installing from source Installing from source
---------------------- ----------------------
- Build the gRPC C core - Clone this repository
E.g, from the root of the gRPC [git repo](https://github.com/google/grpc) - Follow the instructions in [INSTALL](../../INSTALL) to install the gRPC C core.
```sh - Install Ruby 2.x. Consider doing this with [RVM](http://rvm.io), it's a nice way of controlling
$ cd ../..
$ make && sudo make install
```
- Install Ruby 2.1. Consider doing this with [RVM](http://rvm.io), it's a nice way of controlling
the exact ruby version that's used. the exact ruby version that's used.
```sh ```sh
$ command curl -sSL https://rvm.io/mpapis.asc | gpg --import - $ command curl -sSL https://rvm.io/mpapis.asc | gpg --import -

Loading…
Cancel
Save