public
Description: Fixtures aren't fun. Machinist is.
Homepage:
Clone URL: git://github.com/notahat/machinist.git
Kevin Bullock (author)
Thu Oct 15 08:19:59 -0700 2009
notahat (committer)
Sat Oct 31 22:36:56 -0700 2009
machinist / Rakefile
100644 15 lines (11 sloc) 0.288 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rubygems'
require 'rake'
require 'rake/clean'
require 'spec/rake/spectask'
 
desc 'Default: run specs.'
task :default => :spec
 
desc 'Run all the specs for the machinist plugin.'
Spec::Rake::SpecTask.new do |t|
  t.spec_files = FileList['spec/**/*_spec.rb']
  t.rcov = false
end