File: Rakefile

package info (click to toggle)
ruby-subexec 0.2.3%2Bgh-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 116 kB
  • ctags: 6
  • sloc: ruby: 156; sh: 3; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'bundler'
Bundler::GemHelper.install_tasks

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
end

desc "Benchmark"
task :benchmark do
  sh "ruby benchmark/run.rb"
end

task :default => :spec