Sha256: 6543045c52832f50618a71534a6d6b6b3a0874e5ff752ff47d48fb30a5e22e11

Contents?: true

Size: 398 Bytes

Versions: 3

Compression:

Stored size: 398 Bytes

Contents

require 'bundler/gem_tasks'

desc 'Run benchmarks in ruby_benchmark_set'
task :ruby_benchmark_set do
  require 'bundler'
  require 'shellwords'

  Dir.glob(File.expand_path('./ruby_benchmark_set/**/*.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

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
benchkit-0.2.1 Rakefile
benchkit-0.2.0 Rakefile
benchmark_driver-0.2.0 Rakefile