public
Description: A Relational Algebra
Clone URL: git://github.com/nkallen/arel.git
Search Repo:
Click here to lend your support to: arel and make a donation at www.pledgie.com !
arel / Rakefile
100644 15 lines (12 sloc) 0.338 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rubygems'
require 'spec/rake/spectask'
 
Spec::Rake::SpecTask.new do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
end
 
Spec::Rake::SpecTask.new(:coverage) do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.rcov = true
  t.rcov_opts = ['-x', 'spec,gems']
end
 
desc "Default task is to run specs"
task :default => :spec