`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"]
# File lib/hike/paths.rb, line 21 21: def normalize_element(path) 22: path = Pathname.new(path) 23: path = @root.join(path) if path.relative? 24: path.expand_path.to_s 25: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.