Skip to content
Snippets Groups Projects
Commit 09b19500 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

Merge pull request #5192 from nicolasnoble/fixing-ruby-example

Fixing Ruby examples.
parents 673781ff 9fe56a09
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env ruby #!/usr/bin/env ruby
# Copyright 2015, Google Inc. # Copyright 2015-2016, Google Inc.
# All rights reserved. # All rights reserved.
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
...@@ -41,7 +41,7 @@ require 'grpc' ...@@ -41,7 +41,7 @@ require 'grpc'
require 'helloworld_services' require 'helloworld_services'
def main def main
stub = Helloworld::Greeter::Stub.new('localhost:50051') stub = Helloworld::Greeter::Stub.new('localhost:50051', :this_channel_is_insecure)
user = ARGV.size > 0 ? ARGV[0] : 'world' user = ARGV.size > 0 ? ARGV[0] : 'world'
message = stub.say_hello(Helloworld::HelloRequest.new(name: user)).message message = stub.say_hello(Helloworld::HelloRequest.new(name: user)).message
p "Greeting: #{message}" p "Greeting: #{message}"
......
#!/usr/bin/env ruby #!/usr/bin/env ruby
# Copyright 2015, Google Inc. # Copyright 2015-2016, Google Inc.
# All rights reserved. # All rights reserved.
# #
# Redistribution and use in source and binary forms, with or without # Redistribution and use in source and binary forms, with or without
...@@ -147,7 +147,7 @@ def run_route_chat(stub) ...@@ -147,7 +147,7 @@ def run_route_chat(stub)
end end
def main def main
stub = RouteGuide::Stub.new('localhost:50051') stub = RouteGuide::Stub.new('localhost:50051', :this_channel_is_insecure)
run_get_feature(stub) run_get_feature(stub)
run_list_features(stub) run_list_features(stub)
run_route_chat(stub) run_route_chat(stub)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment