Rakefile (view raw)
1task :default => :test 2 3desc "Run tests" 4task :test do 5 Dir['test/**/*_test.rb'].each { |file| require file } 6end 7 8desc "Kick it" 9task :kick do 10 exec "kicker -e rake test lib" 11end