Cezary Baginski
Cezary Baginski
https://github.com/jonleighton/spring-watcher-listen/blob/master/lib/spring/watcher/listen.rb#L58 You can probably try monkey patching this method to set your own set of dirs to avoid rewatching the symlinked dirs.
Looks really good to me - `guard-bundler` actually does something simillar (expects Gemfile symlinked from config directory - or warning if not). Removing watching the root directory is the right...
@goncalvesjoao - figure out a way to not watch symlinked directories. I don't know what your project layout is, so I can't help much. There might be a better way...
Things like 'bower_components' and 'node_modules' should be ignored by Listen default. (I would've done that a long time ago, except I was worried about SemVer - I was probably too...
I'm guessing you can do something like: ``` ruby Spring.watcher.ignore(/^node_modules$/) if Spring.watcher.respond_to?(:ignore) ```
I'm guessing you are mounting a shared folder (on the host) inside a VM. It's a huge amount of work to make everyone happy in the area of VMs. I...