[#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:67954] [ruby-trunk - Bug #10819] [Open] can't glob win32 short pathname
From:
artonx@...
Date:
2015-02-02 18:34:57 UTC
List:
ruby-core #67954
Issue #10819 has been reported by Akio Tajima.
----------------------------------------
Bug #10819: can't glob win32 short pathname
https://bugs.ruby-lang.org/issues/10819
* Author: Akio Tajima
* Status: Open
* Priority: Normal
* Assignee:
* ruby -v: ruby 2.2.0p0 (2014-12-25 revision 49005) [x64-mswin64_100]
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
I used to install ruby under the "c:/program files" and use to apply windows short pathname such as "c:/progra~1" and it worked fine.
However, rubygems on ruby 2.2.0 failed to look up gemspec. After some investigation, I found that ruby 2.2.0 failed to glob with short pathname.
for ex) ruby -e 'p Dir.glob("c:/progra~1/*")' #=> []
Also I found that the inter glob string with shortname+wildcard also failed both Ruby 2.1.0 and 2.2.0.
for ex) ruby -e 'p Dir.glob("C:/progra~*/*")' #=> []
The testcase is below.
assert_equal Dir.glob('C:/Program Files*/m*').size, Dir.glob('c:/Progra~*/m*').size
--
https://bugs.ruby-lang.org/