Forward port some stable changes

This commit is contained in:
Thomas Reynolds 2015-09-17 09:41:17 -07:00
parent a251c82562
commit 409a892da7
19 changed files with 49 additions and 39 deletions

View file

@ -8,16 +8,14 @@ require 'backports/2.0.0/enumerable/lazy'
module Listen
class Silencer
# TODO: switch type and path places - and verify
def silenced?(relative_path, type)
def silenced?(relative_path, _type)
path = relative_path.to_s
# if only_patterns && type == :file
# return true unless only_patterns.any? { |pattern| path =~ pattern }
# end
if only_patterns
return !only_patterns.any? { |pattern| path =~ pattern }
end
return !only_patterns.any? { |pattern| path =~ pattern } if only_patterns
ignore_patterns.any? { |pattern| path =~ pattern }
end