1
0
Fork 0
burden/lib/rake/task.rb

12 lines
193 B
Ruby
Raw Normal View History

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