class Middleman::CoreExtensions::FileWatcher::API

def did_change(path)

Returns:
  • (void) -

Parameters:
  • path (Pathname) -- The file that changed
def did_change(path)
  path = Pathname(path)
  return if ignored?(path)
  logger.debug "== File Change: #{path}"
  @known_paths << path
  self.run_callbacks(path, :changed)
end