Sha256: 727cbbcde8e1a9c25aec9603ffa88368bb2758d2558ae35634a3763a85ac031d
Contents?: true
Size: 337 Bytes
Versions: 5
Compression:
Stored size: 337 Bytes
Contents
package URI::file::QNX; use strict; use warnings; use parent 'URI::file::Unix'; our $VERSION = '5.17'; sub _file_extract_path { my($class, $path) = @_; # tidy path $path =~ s,(.)//+,$1/,g; # ^// is correct $path =~ s,(/\.)+/,/,g; $path = "./$path" if $path =~ m,^[^:/]+:,,; # look like "scheme:" $path; } 1;
Version data entries
5 entries across 5 versions & 1 rubygems