aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/protobuf/ruby/compatibility_tests/v3.0.0/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/protobuf/ruby/compatibility_tests/v3.0.0/Rakefile')
-rw-r--r--third_party/protobuf/ruby/compatibility_tests/v3.0.0/Rakefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/third_party/protobuf/ruby/compatibility_tests/v3.0.0/Rakefile b/third_party/protobuf/ruby/compatibility_tests/v3.0.0/Rakefile
deleted file mode 100644
index 19a4ba1280..0000000000
--- a/third_party/protobuf/ruby/compatibility_tests/v3.0.0/Rakefile
+++ /dev/null
@@ -1,25 +0,0 @@
-require "rake/testtask"
-
-# Proto for tests.
-genproto_output = []
-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
-
-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]