Require rake from different folder

This commit is contained in:
Gregory Eremin
2013-06-07 14:52:26 +04:00
parent 6796791148
commit 54c25361df
5 changed files with 5 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
module Rake
class Task
alias_method :original_execute, :execute
def execute(args)
Burden.wrap(name){ original_execute(args) }
end
end
end