Mongo scopes

This commit is contained in:
Gregory Eremin
2013-06-07 11:57:03 +04:00
parent 908d8492f7
commit 861c12aa32
5 changed files with 8 additions and 6 deletions
+1 -3
View File
@@ -3,9 +3,7 @@ module Rake
alias_method :original_execute, :execute
def execute(args)
Burden.wrap(name, comment) do
original_execute(args)
end
Burden.wrap(name){ original_execute(args) }
end
end
end