module Guard
def run
- Yield: - the block to run
def run UI.clear if options[:clear] lock.synchronize do begin interactor.stop if interactor yield rescue Interrupt end interactor.start if interactor end end
def run UI.clear if options[:clear] lock.synchronize do begin interactor.stop if interactor yield rescue Interrupt end interactor.start if interactor end end