Class PathList::PathAndMatchData
In: lib/path_list.rb
Parent: Pathname

Methods

new  

Attributes

match  [RW] 

Public Class methods

[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]