├── .gitignore ├── History.txt ├── README.txt ├── Rakefile ├── lib ├── directory_watcher.rb └── directory_watcher │ ├── collector.rb │ ├── configuration.rb │ ├── coolio_scanner.rb │ ├── em_scanner.rb │ ├── event.rb │ ├── eventable_scanner.rb │ ├── file_stat.rb │ ├── logable.rb │ ├── notifier.rb │ ├── paths.rb │ ├── rev_scanner.rb │ ├── scan.rb │ ├── scan_and_queue.rb │ ├── scanner.rb │ ├── threaded.rb │ └── version.rb ├── spec ├── directory_watcher_spec.rb ├── paths_spec.rb ├── scanner_scenarios.rb ├── spec_helper.rb └── utility_classes.rb └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/.gitignore -------------------------------------------------------------------------------- /History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/History.txt -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/README.txt -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/directory_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher.rb -------------------------------------------------------------------------------- /lib/directory_watcher/collector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/collector.rb -------------------------------------------------------------------------------- /lib/directory_watcher/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/configuration.rb -------------------------------------------------------------------------------- /lib/directory_watcher/coolio_scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/coolio_scanner.rb -------------------------------------------------------------------------------- /lib/directory_watcher/em_scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/em_scanner.rb -------------------------------------------------------------------------------- /lib/directory_watcher/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/event.rb -------------------------------------------------------------------------------- /lib/directory_watcher/eventable_scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/eventable_scanner.rb -------------------------------------------------------------------------------- /lib/directory_watcher/file_stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/file_stat.rb -------------------------------------------------------------------------------- /lib/directory_watcher/logable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/logable.rb -------------------------------------------------------------------------------- /lib/directory_watcher/notifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/notifier.rb -------------------------------------------------------------------------------- /lib/directory_watcher/paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/paths.rb -------------------------------------------------------------------------------- /lib/directory_watcher/rev_scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/rev_scanner.rb -------------------------------------------------------------------------------- /lib/directory_watcher/scan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/scan.rb -------------------------------------------------------------------------------- /lib/directory_watcher/scan_and_queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/scan_and_queue.rb -------------------------------------------------------------------------------- /lib/directory_watcher/scanner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/scanner.rb -------------------------------------------------------------------------------- /lib/directory_watcher/threaded.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/threaded.rb -------------------------------------------------------------------------------- /lib/directory_watcher/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/lib/directory_watcher/version.rb -------------------------------------------------------------------------------- /spec/directory_watcher_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/spec/directory_watcher_spec.rb -------------------------------------------------------------------------------- /spec/paths_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/spec/paths_spec.rb -------------------------------------------------------------------------------- /spec/scanner_scenarios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/spec/scanner_scenarios.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/utility_classes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwP/directory_watcher/HEAD/spec/utility_classes.rb -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.5.1 2 | --------------------------------------------------------------------------------