We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
headius
Learn more about funding links in repositories.
Report abuse
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From: http://jira.codehaus.org/browse/JRUBY-4863. Differs from MRI on JRuby 1.7.18 and JRuby 9000.
MRI strips additional leading slashes with File.dirname:
File.dirname("////foo/bar/baz") => /foo/bar (MRI) File.dirname("////foo/bar/baz") => ////foo/bar (JRuby)
However, I'm not sure if this "normalization" is intentional in MRI or accidental, because it only seems to work on leading slashes in MRI:
File.dirname("////foo//bar/baz") => /foo//bar (MRI) File.dirname("////foo//bar/baz") => ////foo//bar (JRuby)
I'd say the spec needs to be fleshed out. Either the path should be completely normalized, or not at all.
The text was updated successfully, but these errors were encountered:
I've reproduced this with the latest 9k and 1.7.21 FWIW
Sorry, something went wrong.
I fixed this some time during 9.1.x and we have EOLd 1.7.x. Resolving.
No branches or pull requests
From: http://jira.codehaus.org/browse/JRUBY-4863. Differs from MRI on JRuby 1.7.18 and JRuby 9000.
MRI strips additional leading slashes with File.dirname:
However, I'm not sure if this "normalization" is intentional in MRI or accidental, because it only seems to work on leading slashes in MRI:
I'd say the spec needs to be fleshed out. Either the path should be completely normalized, or not at all.
The text was updated successfully, but these errors were encountered: