aboutsummaryrefslogtreecommitdiffhomepage
path: root/grpc.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'grpc.gemspec')
-rw-r--r--grpc.gemspec4
1 files changed, 3 insertions, 1 deletions
diff --git a/grpc.gemspec b/grpc.gemspec
index 2a66801e34..2df1b9ee91 100644
--- a/grpc.gemspec
+++ b/grpc.gemspec
@@ -20,7 +20,9 @@ Gem::Specification.new do |s|
s.files += Dir.glob('src/ruby/bin/**/*')
s.files += Dir.glob('src/ruby/ext/**/*')
s.files += Dir.glob('src/ruby/lib/**/*')
- s.files += Dir.glob('src/ruby/pb/**/*')
+ s.files += Dir.glob('src/ruby/pb/**/*').reject do |f|
+ f.match(%r{^src/ruby/pb/test})
+ end
s.files += Dir.glob('include/grpc/**/*')
s.test_files = Dir.glob('src/ruby/spec/**/*')
s.bindir = 'src/ruby/bin'