[#68137] improve semantics of manpages — "Anthony J. Bentley" <anthony@...>
Hi,
1 message
2015/02/17
[#68144] Re: Future of test suites for Ruby — Anthony Crumley <anthony.crumley@...>
FYI...
4 messages
2015/02/17
[#68343] [Ruby trunk - Bug #10916] [Open] What the Ruby? SegFault? — ruby@...
Issue #10916 has been reported by why do i need this acct just to create a bug report.
5 messages
2015/02/27
[#68373] Re: [Ruby trunk - Bug #10916] [Open] What the Ruby? SegFault?
— "Martin J. Dürst" <duerst@...>
2015/03/02
> * Author: why do i need this acct just to create a bug report
[#68358] [Ruby trunk - Bug #10902] require("enumerator") scans LOAD_PATH 2x on every invocation — [email protected]
Issue #10902 has been updated by Aman Gupta.
3 messages
2015/02/28
[ruby-core:68131] [Ruby trunk - Bug #10858] File.expand_path on Windows does not handle drive-current path if 2nd arg is relative
From:
nobu@...
Date:
2015-02-17 01:52:41 UTC
List:
ruby-core #68131
Issue #10858 has been updated by Nobuyoshi Nakada.
Description updated
Backport changed from 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN to 2.0.0: REQUIRED, 2.1: REQUIRED, 2.2: REQUIRED
----------------------------------------
Bug #10858: File.expand_path on Windows does not handle drive-current path if 2nd arg is relative
https://bugs.ruby-lang.org/issues/10858#change-51514
* Author: Daniel Berger
* Status: Open
* Priority: Normal
* Assignee:
* ruby -v: ruby 2.2.0p43 (2015-02-06 revision 49530) [i386-mswin32_120]
* Backport: 2.0.0: REQUIRED, 2.1: REQUIRED, 2.2: REQUIRED
----------------------------------------
On Windows, if the first argument to File.expand_path is a drive-current path, and the dir argument is relative, you get a bogus result:
~~~ruby
irb(main):001:0> File.expand_path("c:foo", "bar")
=> "C:/Users/djberge/Repositories/bar/c:foo"
~~~
Compare that with Ruby 1.8:
~~~ruby
irb(main):002:0> RUBY_VERSION
=> "1.8.7"
irb(main):003:0> File.expand_path('c:foo', "bar")
=> "C:/Users/djberge/Repositories/bar/foo"
~~~
--
https://bugs.ruby-lang.org/