[MacRuby-devel] [MacRuby] #285: File.join broken/inconsistent with MRI
#285: File.join broken/inconsistent with MRI
+---
Reporter: rfwat...@… | Owner: lsansone...@…
Type: defect | Status: new
Priority: blocker | Milestone:
Component: MacRuby |Keywords:
+---
In MRI:
File.join("/Users/", "/me")
=> "/Users/me"
In macruby:
File.join("/Users/", "/me")
=> "/Users///me"
--
Ticket URL:
MacRuby
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] [MacRuby] #285: File.join broken/inconsistent with MRI
#285: File.join broken/inconsistent with MRI
+---
Reporter: rfwat...@… |Owner: lsansone...@…
Type: defect | Status: closed
Priority: blocker |Milestone:
Component: MacRuby | Resolution: fixed
Keywords: |
+---
Changes (by eloy.de.en...@…):
* status: new => closed
* resolution: => fixed
Comment:
Thanks for reporting, this has been fixed in the experimental branch:
{{{
% ./miniruby -e 'p File.join("/Users/", "/me")'
"/Users/me"
}}}
--
Ticket URL:
MacRuby
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
