Accept constructor options in Runner.run factory

This commit is contained in:
Thibault Jouan
2015-04-08 22:29:29 +00:00
parent 7c8b312084
commit 6b0676e547

View File

@@ -2,8 +2,8 @@ module Uh
module WM module WM
class Runner class Runner
class << self class << self
def run env def run env, **options
runner = new env runner = new env, **options
runner.connect_manager runner.connect_manager
end end
end end