aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanley.cheung@gmail.com>2015-09-24 15:31:07 -0700
committerGravatar Stanley Cheung <stanley.cheung@gmail.com>2015-09-24 15:31:07 -0700
commit495ad778e10f3529b895ff1a4a6f2efc5f8266af (patch)
tree6018967a946dc92030a7ef287861d902de94e388 /src/ruby
parent5d776c7e2d70283083874ad9ceb0d01ce6c83968 (diff)
parent0deeb04a0b93387bbbcd94f3967a5343bfe5582d (diff)
Merge pull request #3475 from tbetbetbe/release-0_11
Fixes for the scripts packaged in the ruby gem
Diffstat (limited to 'src/ruby')
-rwxr-xr-xsrc/ruby/bin/math_server.rb2
-rwxr-xr-xsrc/ruby/bin/noproto_server.rb2
-rwxr-xr-xsrc/ruby/grpc.gemspec5
-rw-r--r--src/ruby/lib/grpc/version.rb2
-rwxr-xr-xsrc/ruby/pb/test/server.rb2
5 files changed, 7 insertions, 6 deletions
diff --git a/src/ruby/bin/math_server.rb b/src/ruby/bin/math_server.rb
index 562f197317..1ee4c5632d 100755
--- a/src/ruby/bin/math_server.rb
+++ b/src/ruby/bin/math_server.rb
@@ -195,7 +195,7 @@ def main
s.add_http2_port(options['host'], test_server_creds)
GRPC.logger.info("... running securely on #{options['host']}")
else
- s.add_http2_port(options['host'])
+ s.add_http2_port(options['host'], :this_port_is_insecure)
GRPC.logger.info("... running insecurely on #{options['host']}")
end
diff --git a/src/ruby/bin/noproto_server.rb b/src/ruby/bin/noproto_server.rb
index 72a5762040..66554e26f6 100755
--- a/src/ruby/bin/noproto_server.rb
+++ b/src/ruby/bin/noproto_server.rb
@@ -101,7 +101,7 @@ def main
s.add_http2_port(options['host'], test_server_creds)
GRPC.logger.info("... running securely on #{options['host']}")
else
- s.add_http2_port(options['host'])
+ s.add_http2_port(options['host'], :this_port_is_insecure)
GRPC.logger.info("... running insecurely on #{options['host']}")
end
diff --git a/src/ruby/grpc.gemspec b/src/ruby/grpc.gemspec
index 093606bb8b..61cf18cf54 100755
--- a/src/ruby/grpc.gemspec
+++ b/src/ruby/grpc.gemspec
@@ -17,9 +17,10 @@ Gem::Specification.new do |s|
s.requirements << 'libgrpc ~> 0.11.0 needs to be installed'
s.files = %w( Rakefile )
- s.files += Dir.glob('lib/**/*')
- s.files += Dir.glob('ext/**/*')
s.files += Dir.glob('bin/**/*')
+ s.files += Dir.glob('ext/**/*')
+ s.files += Dir.glob('lib/**/*')
+ s.files += Dir.glob('pb/**/*')
s.test_files = Dir.glob('spec/**/*')
%w(math noproto).each do |b|
s.executables += ["#{b}_client.rb", "#{b}_server.rb"]
diff --git a/src/ruby/lib/grpc/version.rb b/src/ruby/lib/grpc/version.rb
index 108c22b25e..9acf7a055a 100644
--- a/src/ruby/lib/grpc/version.rb
+++ b/src/ruby/lib/grpc/version.rb
@@ -29,5 +29,5 @@
# GRPC contains the General RPC module.
module GRPC
- VERSION = '0.11.0'
+ VERSION = '0.11.1'
end
diff --git a/src/ruby/pb/test/server.rb b/src/ruby/pb/test/server.rb
index a311bb76e6..32934f70ad 100755
--- a/src/ruby/pb/test/server.rb
+++ b/src/ruby/pb/test/server.rb
@@ -187,7 +187,7 @@ def main
s.add_http2_port(host, test_server_creds)
GRPC.logger.info("... running securely on #{host}")
else
- s.add_http2_port(host)
+ s.add_http2_port(host, :this_port_is_insecure)
GRPC.logger.info("... running insecurely on #{host}")
end
s.handle(TestTarget)