public
Description: Gisting is an open source Ruby implementation of Google's MapReduce programming paradigm
Homepage:
Clone URL: git://github.com/mchung/gisting.git
gisting / Rakefile
100644 11 lines (8 sloc) 0.209 kb
1
2
3
4
5
6
7
8
9
10
11
require 'rake'
require 'spec/rake/spectask'
 
task :default => [:spec]
 
desc "Run Gist specs"
Spec::Rake::SpecTask.new('spec') do |t|
  t.spec_opts = ["-fs", "-c"]
  t.spec_files = FileList['spec/**/*.rb']
end