├── .gitignore ├── LICENSE ├── README.md ├── Rakefile ├── VERSION ├── em-dir-watcher.gemspec ├── examples └── monitor.rb ├── lib ├── em-dir-watcher.rb └── em-dir-watcher │ ├── invokers │ └── subprocess_invoker.rb │ ├── monitor.rb │ ├── platform │ ├── linux.rb │ ├── mac.rb │ ├── mac │ │ ├── ffi_fsevents_watcher.rb │ │ └── rubycocoa_watcher.rb │ ├── windows.rb │ └── windows │ │ ├── monitor.rb │ │ └── path_to_ruby_exe.rb │ └── tree.rb ├── test ├── helper.rb ├── test_monitor.rb └── test_tree.rb └── testloop /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.9.4 2 | -------------------------------------------------------------------------------- /em-dir-watcher.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/em-dir-watcher.gemspec -------------------------------------------------------------------------------- /examples/monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/examples/monitor.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/invokers/subprocess_invoker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/invokers/subprocess_invoker.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/monitor.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/platform/linux.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/platform/linux.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/platform/mac.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/platform/mac.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/platform/mac/ffi_fsevents_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/platform/mac/ffi_fsevents_watcher.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/platform/mac/rubycocoa_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/platform/mac/rubycocoa_watcher.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/platform/windows.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/platform/windows.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/platform/windows/monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/platform/windows/monitor.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/platform/windows/path_to_ruby_exe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/platform/windows/path_to_ruby_exe.rb -------------------------------------------------------------------------------- /lib/em-dir-watcher/tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/lib/em-dir-watcher/tree.rb -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/test/helper.rb -------------------------------------------------------------------------------- /test/test_monitor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/test/test_monitor.rb -------------------------------------------------------------------------------- /test/test_tree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/test/test_tree.rb -------------------------------------------------------------------------------- /testloop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mockko/em-dir-watcher/HEAD/testloop --------------------------------------------------------------------------------