public
Description: A set of rake tasks to help with checking in code
Homepage:
Clone URL: git://github.com/pgr0ss/rake_commit_tasks.git
rake_commit_tasks / Rakefile
100644 8 lines (5 sloc) 0.113 kb
1
2
3
4
5
6
7
8
require "rake/testtask"
 
task :default => :test
 
Rake::TestTask.new do |t|
  t.pattern = "test/**/*_test.rb"
end