`Paths` is an internal collection for tracking path strings.
Relative paths added to this array are expanded relative to `@root`.
paths = Paths.new("/usr/local") paths << "tmp" paths << "/tmp" paths # => ["/usr/local/tmp", "/tmp"]
[Validate]