module Fswatch class Monitor def initialize(options = {}) # stub method # actual implementation is located in C extension - `ext/fswatch/monitor.c` raise NotImplementedError, "Called stub method. Looks like C Extension failed to load" end def start # stub method # actual implementation is located in C extension - `ext/fswatch/monitor.c` raise NotImplementedError, "Called stub method. Looks like C Extension failed to load" end def stop # stub method # actual implementation is located in C extension - `ext/fswatch/monitor.c` raise NotImplementedError, "Called stub method. Looks like C Extension failed to load" end end end