all repos — markup @ 2fc7da6d417acb1c79764d83a3d63c233c755529

The code we use to render README.your_favorite_markup

rake test and rake kick
Chris Wanstrath chris@ozmm.org
Fri, 30 Oct 2009 18:14:39 -0700
commit

2fc7da6d417acb1c79764d83a3d63c233c755529

parent

86aafd93cd08f71c4da052f3dae122e5068fd16d

1 files changed, 11 insertions(+), 0 deletions(-)

jump to
M RakefileRakefile

@@ -0,0 +1,11 @@

+task :default => :test + +desc "Run tests" +task :test do + Dir['test/**/*_test.rb'].each { |file| require file } +end + +desc "Kick it" +task :kick do + exec "kicker -e rake test lib" +end