From 04b6a62c52c166c5858106130b6e69201ce00daa Mon Sep 17 00:00:00 2001
From: "Nicolas \"Pixel\" Noble" <pixel@nobis-crew.org>
Date: Fri, 29 May 2015 00:51:06 +0200
Subject: [PATCH] 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.
---
 ruby/Gemfile   | 2 +-
 ruby/README.md | 5 -----
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/ruby/Gemfile b/ruby/Gemfile
index e75f0f6137..65d3f0ad4a 100644
--- a/ruby/Gemfile
+++ b/ruby/Gemfile
@@ -3,4 +3,4 @@
 
 source 'https://rubygems.org/'
 
-gemspec
+gem 'grpc', :git => 'https://github.com/grpc/grpc.git', :submodules => true, glob: 'src/ruby/*.gemspec'
diff --git a/ruby/README.md b/ruby/README.md
index 11b3d825b7..1fa958db94 100644
--- a/ruby/README.md
+++ b/ruby/README.md
@@ -32,11 +32,6 @@ INSTALL
 -------
 
 - 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
 ```sh
 $ # from this directory
-- 
GitLab