start()
public

No documentation available.

# File activesupport/lib/active_support/evented_file_update_checker.rb, line 105
      def start
        normalize_dirs!
        @dtw, @missing = [*@dtw, *@missing].partition(&:exist?)
        @listener = @dtw.any? ? Listen.to(*@dtw, &method(:changed)) : nil
        @listener&.start
      end