Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
685 B
28 lines
685 B
require "rake/testtask" |
|
|
|
# Proto for tests. |
|
genproto_output = [] |
|
|
|
unless ENV['BAZEL'] == 'true' |
|
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 "./protoc --ruby_out=. tests/generated_code.proto" |
|
end |
|
|
|
file "tests/test_import.rb" => "tests/test_import.proto" do |file_task| |
|
sh "./protoc --ruby_out=. tests/test_import.proto" |
|
end |
|
end |
|
|
|
task :genproto => genproto_output |
|
|
|
task :clean do |
|
sh "rm -f #{genproto_output.join(' ')}" |
|
end |
|
|
|
Rake::TestTask.new(:test => :genproto) do |t| |
|
t.test_files = FileList["tests/*.rb"] |
|
end |
|
|
|
task :default => [:test]
|
|
|