Rename Interpreter class as Worker

This commit is contained in:
Thibault Jouan
2014-01-09 01:08:49 +00:00
parent cdc3128727
commit 4c0a7f0fc7
4 changed files with 9 additions and 9 deletions

View File

@@ -28,7 +28,7 @@ module Producer
@stdout = stdout
end
def run(worker: Interpreter.new)
def run(worker: Worker.new)
load_recipe
worker.process recipe.tasks
end

View File

@@ -1,6 +1,6 @@
module Producer
module Core
class Interpreter
class Worker
def process(tasks)
tasks.each { |t| process_task t }
end