Implement Task::DSL#evaluate:

So that the env is available from the task DSL.
This commit is contained in:
Thibault Jouan
2013-07-30 23:24:28 +00:00
parent a45a340b64
commit ace6a4ad2b
6 changed files with 28 additions and 12 deletions

View File

@@ -8,8 +8,8 @@ module Producer
@block = block
end
def evaluate
DSL.new &@block
def evaluate(env)
DSL.new(&@block).evaluate(env)
end
end
end