Working prototype
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user