public
Fork of notahat/machinist
Description: A Rails plugin to help populate your database with data for tests.
Homepage:
Clone URL: git://github.com/technoweenie/machinist.git
machinist / Rakefile
100644 13 lines (10 sloc) 0.275 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rake'
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.spec_opts = ['--colour']
  t.rcov = true
end