Sha256: 7ca8b06a9e07a3e06e5980e47c79c5cb735085e955a49126c2d46926af83986f
Contents?: true
Size: 468 Bytes
Versions: 4
Compression:
Stored size: 468 Bytes
Contents
# Remove annoying "** ERROR: directory is already being watched! **" errors in development # https://github.com/guard/listen/wiki/Duplicate-directory-errors # https://github.com/rails/rails/issues/32700 if Rails.env.development? require 'listen/record/symlink_detector' module Listen class Record class SymlinkDetector def _fail(_, _) fail Error, "Don't watch locally-symlinked directory twice" end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems