Module: FastIgnore::Matchers::Unmatchable
- Defined in:
- lib/fast_ignore/matchers/unmatchable.rb
Class Method Summary collapse
- .dir_only? ⇒ Boolean
- .file_only? ⇒ Boolean
-
.inspect ⇒ Object
:nocov:.
-
.match?(_) ⇒ Boolean
:nocov:.
- .weight ⇒ Object
Class Method Details
.dir_only? ⇒ Boolean
7 8 9 |
# File 'lib/fast_ignore/matchers/unmatchable.rb', line 7 def dir_only? false end |
.file_only? ⇒ Boolean
11 12 13 |
# File 'lib/fast_ignore/matchers/unmatchable.rb', line 11 def file_only? false end |
.inspect ⇒ Object
:nocov:
20 21 22 |
# File 'lib/fast_ignore/matchers/unmatchable.rb', line 20 def inspect '#<Unmatchable>' end |
.match?(_) ⇒ Boolean
:nocov:
25 26 27 |
# File 'lib/fast_ignore/matchers/unmatchable.rb', line 25 def match?(_) false end |
.weight ⇒ Object
15 16 17 |
# File 'lib/fast_ignore/matchers/unmatchable.rb', line 15 def weight 0 end |