Skip to content

Commit

Permalink
Fix Ruby module name generation when the ruby_package option is used …
Browse files Browse the repository at this point in the history
…(again) (protocolbuffers#5794)

* Revert "Revert "Fix Ruby module name generation when the ruby_package option is used (protocolbuffers#5735)""

This reverts commit bb211e8.

* add new files to Makefile.am
  • Loading branch information
jbolinger authored and TeBoring committed Mar 2, 2019
1 parent 64359e0 commit 3c5090f
Showing 3 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
syntax = "proto3";

package one.two.a_three;

option ruby_package = "A::B::C";

message Four {
string a_string = 1;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
syntax = "proto3";

package one.two.a_three.and;

option ruby_package = "AA.BB.CC";

message Four {
string another_string = 1;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
syntax = "proto3";

package one.two.a_three;

message Four {
string a_string = 1;
}

0 comments on commit 3c5090f

Please sign in to comment.