Rakefile in benchmark_driver-0.2.0 vs Rakefile in benchmark_driver-0.2.1
- old
+ new
@@ -1,15 +1,15 @@
require 'bundler/gem_tasks'
-desc 'Run benchmarks in ruby_benchmark_set'
-task :ruby_benchmark_set do
+desc 'Run benchmarks in benchmarks'
+task :benchmarks do
require 'bundler'
require 'shellwords'
- Dir.glob(File.expand_path('./ruby_benchmark_set/**/*.yml', __dir__)).sort.each do |path|
+ Dir.glob(File.expand_path('./benchmarks/**/*.yml', __dir__)).sort.each do |path|
Bundler.with_clean_env do
sh [File.expand_path('./exe/benchmark_driver', __dir__), path].shelljoin
end
end
end
-task default: :ruby_benchmark_set
+task default: :benchmarks