aboutsummaryrefslogtreecommitdiff
path: root/ruby/Rakefile
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2016-07-26 10:55:34 -0700
committerGitHub <noreply@github.com>2016-07-26 10:55:34 -0700
commit234ec01795b0487392e87f5c67f4929d1b8f94fb (patch)
treeb34ca93fbe44a63137f7049d894c5032dee3397c /ruby/Rakefile
parentf11a4f1fe4b73044615b285a79ab09806fd54b7a (diff)
parent43b36dd98375b6d410996d52a9db4652dfd28997 (diff)
downloadprotobuf-234ec01795b0487392e87f5c67f4929d1b8f94fb.tar.gz
protobuf-234ec01795b0487392e87f5c67f4929d1b8f94fb.tar.bz2
protobuf-234ec01795b0487392e87f5c67f4929d1b8f94fb.zip
Merge pull request #1847 from haberman/GAfixes
GA fixes
Diffstat (limited to 'ruby/Rakefile')
-rw-r--r--ruby/Rakefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/ruby/Rakefile b/ruby/Rakefile
index fa29c315..ba1cf4cf 100644
--- a/ruby/Rakefile
+++ b/ruby/Rakefile
@@ -31,7 +31,7 @@ genproto_output = []
unless ENV['IN_DOCKER'] == 'true'
well_known_protos.each do |proto_file|
input_file = "../src/" + proto_file
- output_file = "lib/" + proto_file.sub(/\.proto$/, ".rb")
+ output_file = "lib/" + proto_file.sub(/\.proto$/, "_pb.rb")
genproto_output << output_file
file output_file => input_file do |file_task|
sh "../src/protoc -I../src --ruby_out=lib #{input_file}"
@@ -80,10 +80,15 @@ end
# Proto for tests.
genproto_output << "tests/generated_code.rb"
+genproto_output << "tests/test_import.rb"
file "tests/generated_code.rb" => "tests/generated_code.proto" do |file_task|
sh "../src/protoc --ruby_out=. tests/generated_code.proto"
end
+file "tests/test_import.rb" => "tests/test_import.proto" do |file_task|
+ sh "../src/protoc --ruby_out=. tests/test_import.proto"
+end
+
task :genproto => genproto_output
task :clean do