class Middleman::CoreExtensions::FileWatcher::API
def did_delete(path)
-
(void)
-
Parameters:
-
path
(String
) -- The file that was deleted
def did_delete(path) return if IGNORE_LIST.any? { |r| path.match(r) } puts "== File Deletion: #{path}" if @app.logging? @known_paths.delete(path) self.run_callbacks(path, :deleted) end