class Covered::Include

def glob

def glob
	paths = Set.new
	
	Dir.glob(@pattern) do |path|
		unless File.directory?(path)
			paths << File.realpath(path)
		end
	end
	
	return paths
end