Sha256: 74f67cc225bac2178d73b7b23c58f06176aaf090a43bfaa81258e034cec4ccea
Contents?: true
Size: 524 Bytes
Versions: 7
Compression:
Stored size: 524 Bytes
Contents
module JCukeForker class AbstractListener def on_run_starting end def on_worker_waiting(worker_path) end def on_worker_dead(worker_path) end def on_task_starting(worker_path, feature) end def on_task_finished(worker_path, feature, status) end def on_worker_register(worker_path) end def on_run_interrupted end def on_run_finished(failed) end def update(meth, *args) __send__(meth, *args) end end # AbstractListener end # CukeForker
Version data entries
7 entries across 7 versions & 1 rubygems