Sha256: 60f8361ed9035c68cda44eed1e8c675ef2ab280406d3798912cb027fd6f6c6e7

Contents?: true

Size: 306 Bytes

Versions: 7

Compression:

Stored size: 306 Bytes

Contents

module GitCompound
  module Worker
    # Worker that executes manifest tasks
    # This happens when visitor visits manifests in reverse order
    #
    class TaskRunner < Worker
      def visit_task(task)
        Logger.info "Running: `#{task.name}` task"
        task.execute
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
git_compound-0.2.2 lib/git_compound/worker/task_runner.rb
git_compound-0.2.1 lib/git_compound/worker/task_runner.rb
git_compound-0.2.0 lib/git_compound/worker/task_runner.rb
git_compound-0.1.2 lib/git_compound/worker/task_runner.rb
git_compound-0.1.1 lib/git_compound/worker/task_runner.rb
git_compound-0.1.0 lib/git_compound/worker/task_runner.rb
git_compound-0.0.10 lib/git_compound/worker/task_runner.rb