We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MRI: File.realpath 'c:/test' => 'c:/test' jRuby: File.realpath 'c:/test' => 'C:\ \test' (tested on 1.7.19 and 9.0.0.0 rc2)
It causes problems in Rails applications, because Rails.root path is invalid.
jruby/core/src/main/java/org/jruby/RubyFile.java
Line 1592 in da5dad6
The text was updated successfully, but these errors were encountered:
You might test 1.7.21 but I don't expect it to be fixed there.
Sorry, something went wrong.
https://github.com/jruby/jruby/blob/master/core/src/main/java/org/jruby/RubyFile.java#L1632
=> realPath = JRubyFile.normalizeSeps(new File(realPath).getCanonicalPath());
Successfully merging a pull request may close this issue.
MRI: File.realpath 'c:/test' => 'c:/test'
jRuby: File.realpath 'c:/test' => 'C:\ \test' (tested on 1.7.19 and 9.0.0.0 rc2)
It causes problems in Rails applications, because Rails.root path is invalid.
jruby/core/src/main/java/org/jruby/RubyFile.java
Line 1592 in da5dad6
The text was updated successfully, but these errors were encountered: