We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af3c54c commit aeff5abCopy full SHA for aeff5ab
lib/debase.rb
@@ -96,6 +96,7 @@ def disable
96
97
def accept?(file_path)
98
return true unless @enabled
99
+ return false if file_path.nil?
100
included.any? { |path| file_path.start_with?(path) } && excluded.all? { |path| !file_path.start_with?(path)}
101
end
102
lib/debase/version.rb
@@ -1,3 +1,3 @@
1
module Debase
2
- VERSION = "0.2.0" unless defined? VERSION
+ VERSION = "0.2.1" unless defined? VERSION
3
0 commit comments