aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compiler/ruby_generator.cc
diff options
context:
space:
mode:
authorGravatar temiola <temiola@google.com>2015-01-06 18:25:06 -0800
committerGravatar Nicolas Noble <nnoble@google.com>2015-01-07 01:16:47 -0800
commit3d726cfcd26948ff695faa1cf202ae3e4a5de770 (patch)
tree2ac5a9b251c0ed875587d0be73241fab2b6fc81c /src/compiler/ruby_generator.cc
parentf8b66eab6ac1400d5f310b52e954010e943589af (diff)
bugfix: correct service include in ruby compiler
Change on 2015/01/06 by temiola <temiola@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83393999
Diffstat (limited to 'src/compiler/ruby_generator.cc')
-rw-r--r--src/compiler/ruby_generator.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/ruby_generator.cc b/src/compiler/ruby_generator.cc
index e4ba387cbe..e8d3c25e0b 100644
--- a/src/compiler/ruby_generator.cc
+++ b/src/compiler/ruby_generator.cc
@@ -100,7 +100,7 @@ void PrintService(const ServiceDescriptor* service, const string& package,
// Write the indented class body.
out->Indent();
out->Print("\n");
- out->Print("include GRPC::Generic::Service\n");
+ out->Print("include GRPC::GenericService\n");
out->Print("\n");
out->Print("self.marshal_class_method = :encode\n");
out->Print("self.unmarshal_class_method = :decode\n");