aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
blob: 8cc2e02854f283d4247a92006d59b525a391b202 (plain)
1
2
3
4
5
6
7
8
9
10
require 'rake'
require 'rake/testtask'

Rake::TestTask.new do |t|
  t.libs << '.'
  t.libs << 'spec'
  t.pattern = 'spec/**/*_spec.rb'
end

task :default => :test