Sha256: 6e0a3e780fdcd2498a22fbc2a1d91988b955467b87787565e1ae92b6b419e383

Contents?: true

Size: 275 Bytes

Versions: 10

Compression:

Stored size: 275 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"
require "rake/testtask"

task :default => :test

Rake::TestTask.new do |test|
  test.pattern = "test/**/test_*.rb"
end

desc "Run benchmarks"
task :benchmark do
  system "ruby benchmarks/benchmark.rb"
end
task :bm => :benchmark

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
stack_tracy-0.1.9 Rakefile
stack_tracy-0.1.8 Rakefile
stack_tracy-0.1.7 Rakefile
stack_tracy-0.1.6 Rakefile
stack_tracy-0.1.5 Rakefile
stack_tracy-0.1.4 Rakefile
stack_tracy-0.1.3 Rakefile
stack_tracy-0.1.2 Rakefile
stack_tracy-0.1.1 Rakefile
stack_tracy-0.1.0 Rakefile