# File lib/guard/dsl.rb, line 280
    def interactor(options)
      if options == :off
        ::Guard::Interactor.enabled = false

      elsif options.is_a?(Hash)
        ::Guard::Interactor.options = options

      else
        ::Guard::UI.deprecation(INTERACTOR_DEPRECATION)
      end
    end