[Source]
# File lib/path_list.rb, line 373 def self.new path, match=nil if match.nil? Pathname.new path else o = super(path) o.match = match o end end
[Validate]