class Guard::Interactor

def start


Start the line reader in its own thread.
def start
  return if ENV['GUARD_ENV'] == 'test'
  @thread = Thread.new { read_line } if !@thread || !@thread.alive?
end