class Sinatra::Reloader::Watcher

def updated?

Indicates whether or not the file being watched has been modified.
def updated?
  !ignore? && !removed? && mtime != File.mtime(path)
end