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
class Runner
class << self
def run env
runner = new env
def run env, **options
runner = new env, **options
runner.connect_manager
end
end