Working prototype

This commit is contained in:
Gregory Eremin
2013-06-04 22:11:41 +04:00
parent 97960929cf
commit 5a3b0b8754
7 changed files with 94 additions and 29 deletions
+11
View File
@@ -0,0 +1,11 @@
module Rake
class Task
alias :original_execute :execute
def execute(args)
RakeControl.wrap(name, comment) do
original_execute(args)
end
end
end
end