module Monitor
Nested
Definitions
def self.new(*arguments, **options)
Create a new monitor instance.
This factory method creates a monitor that uses platform-specific native filesystem event APIs (FSEvent on macOS, INotify on Linux, etc.) via the io-watch
gem for efficient, event-driven file monitoring.
Signature
-
returns
Native
A new native monitor instance.
Implementation
def self.new(*arguments, **options)
Native.new(*arguments, **options)
end