We can now use the gRPC gem directly from git.
With the release of bundler 1.10, we can now simplify the build steps, and use the git repository directly as a ruby gem, without having to install gRPC at all.
This commit is contained in:
parent
7708692d16
commit
04b6a62c52
|
|
@ -3,4 +3,4 @@
|
||||||
|
|
||||||
source 'https://rubygems.org/'
|
source 'https://rubygems.org/'
|
||||||
|
|
||||||
gemspec
|
gem 'grpc', :git => 'https://github.com/grpc/grpc.git', :submodules => true, glob: 'src/ruby/*.gemspec'
|
||||||
|
|
|
||||||
|
|
@ -32,11 +32,6 @@ INSTALL
|
||||||
-------
|
-------
|
||||||
|
|
||||||
- Clone this repository
|
- Clone this repository
|
||||||
- Install gRPC Ruby using the brew-based installer
|
|
||||||
```sh
|
|
||||||
$ curl -fsSL https://raw.githubusercontent.com/tbetbetbe/homebrew-grpc/master/scripts/install | bash -s ruby
|
|
||||||
```
|
|
||||||
|
|
||||||
- Use bundler to install the example package's dependencies
|
- Use bundler to install the example package's dependencies
|
||||||
```sh
|
```sh
|
||||||
$ # from this directory
|
$ # from this directory
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue