class Guard::RSpec::Inspectors::KeepingInspector

def _with_failed_locations(paths)

Do not include location in result if its path is already included.
Return paths + failed locations.
def _with_failed_locations(paths)
  failed_paths = failed_locations.map { |l| _location_path(l) }
  (paths | failed_paths).uniq
end