class FastIgnore::UnmatchableRule

Public Class Methods

component_rules_count() click to toggle source
# File lib/fast_ignore/unmatchable_rule.rb, line 14
def component_rules_count
  1
end
dir_only?() click to toggle source
# File lib/fast_ignore/unmatchable_rule.rb, line 18
def dir_only?
  false
end
file_only?() click to toggle source
# File lib/fast_ignore/unmatchable_rule.rb, line 22
def file_only?
  false
end
inspect() click to toggle source

:nocov:

# File lib/fast_ignore/unmatchable_rule.rb, line 31
def inspect
  '#<UnmatchableRule>'
end
match?(_relative_path, _full_path, _filename, _content) click to toggle source

:nocov:

# File lib/fast_ignore/unmatchable_rule.rb, line 36
def match?(_relative_path, _full_path, _filename, _content)
  false
end
shebang?() click to toggle source
# File lib/fast_ignore/unmatchable_rule.rb, line 26
def shebang?
  false
end
squash(_) click to toggle source
# File lib/fast_ignore/unmatchable_rule.rb, line 6
def squash(_)
  self
end
squashable_type() click to toggle source
# File lib/fast_ignore/unmatchable_rule.rb, line 10
def squashable_type
  5
end