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

12 lines
188 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)
2013-06-06 18:55:21 +00:00
Burden.wrap(name, comment) do
2013-06-04 18:11:41 +00:00
original_execute(args)
end
end
end
end