module PathList::Matchers::Unmatchable

Public Class Methods

dir_only?() click to toggle source
# File lib/path_list/matchers/unmatchable.rb, line 7
def dir_only?
  false
end
file_only?() click to toggle source
# File lib/path_list/matchers/unmatchable.rb, line 11
def file_only?
  false
end
inspect() click to toggle source

:nocov:

# File lib/path_list/matchers/unmatchable.rb, line 20
def inspect
  '#<Unmatchable>'
end
match?(_) click to toggle source

:nocov:

# File lib/path_list/matchers/unmatchable.rb, line 25
def match?(_)
  false
end
shebang?() click to toggle source
# File lib/path_list/matchers/unmatchable.rb, line 15
def shebang?
  false
end