Sha256: 12647e2c0f2c282083f1890705f7fc0c94aba1d45657409f7f76aefeac19d4cd
Contents?: true
Size: 328 Bytes
Versions: 13
Compression:
Stored size: 328 Bytes
Contents
# frozen-string-literal: true require 'fast_ignore' module Leftovers module MatcherBuilders module Path def self.build(path_pattern) return if path_pattern.nil? || path_pattern.empty? ::FastIgnore.new(include_rules: path_pattern, gitignore: false, root: Leftovers.pwd) end end end end
Version data entries
13 entries across 13 versions & 1 rubygems