class Guard::Watcher

def ==(other)

Returns:
  • (true, false) - equal or not

Parameters:
  • other (Guard::Watcher) -- other watcher for comparing
def ==(other)
  action == other.action && pattern == other.pattern
end