From 5b483df29bf49fd90b761cb1b0458002c0406b74 Mon Sep 17 00:00:00 2001 From: Jim Weirich Date: Tue, 28 Sep 2010 14:49:20 -0400 Subject: [PATCH] Added descriptions to rake tasks. --- rakelib/checks.rake | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rakelib/checks.rake b/rakelib/checks.rake index 9ef6199..2870202 100644 --- a/rakelib/checks.rake +++ b/rakelib/checks.rake @@ -15,6 +15,7 @@ namespace "check" do puts end + desc "Check that asserts have __ replacements" task :asserts do puts "Checking for asserts missing the replacement text:" begin @@ -28,4 +29,5 @@ namespace "check" do end end +desc "Run some simple consistancy checks" task :check => ["check:abouts", "check:asserts"]