repo.or.cz
/
ruby-do-notation.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Simplified Maybe
[ruby-do-notation.git]
/
Rakefile
blob
fb8a20de7d9b13b89eda538030ed5b8ee5153f99
1
require 'spec/rake/spectask'
2
3
task :default => :test
4
5
desc "Run all specs"
6
Spec::Rake::SpecTask.new('test') do |t|
7
t.spec_files = FileList['test/specs.rb']
8
end
9
10
desc "Run all specs with RCov"
11
Spec::Rake::SpecTask.new('rcov') do |t|
12
t.spec_files = FileList['test/specs.rb']
13
t.rcov = true
14
end