burden/lib/rake/task.rb

12 lines
193 B
Ruby
Raw Normal View History

2013-06-04 22:11:41 +04:00
module Rake
class Task
2013-06-04 22:59:18 +04:00
alias_method :original_execute, :execute
2013-06-04 22:11:41 +04:00
def execute(args)
RakeControl.wrap(name, comment) do
original_execute(args)
end
end
end
end