# File lib/guard/interactor.rb, line 66
    def self.fabricate
      case @interactor
      when :coolline
        ::Guard::CoollineInteractor.new if ::Guard::CoollineInteractor.available?
      when :readline
        ::Guard::ReadlineInteractor.new if ::Guard::ReadlineInteractor.available?
      when :simple
        ::Guard::SimpleInteractor.new
      when :off
        nil
      else
        auto_detect
      end
    end