Project

General

Profile

Actions

Bug #15649

closed

Dir.glob regression with braces and Windows drive letters

Added by daniel-rikowski (Daniel Rikowski) about 5 years ago. Updated almost 5 years ago.

Status:
Closed
Assignee:
-
Target version:
-
ruby -v:
ruby 2.6.1p33 (2019-01-30 revision 66950) [x64-mingw32]
[ruby-core:91728]

Description

I noticed that certain glob patterns involving braces and drive letters, which did work in Ruby 2.5.3, no longer work in Ruby 2.6.1.

Assume I have a directory C:\Projects and my current directory is C:\Windows. Using IRB I can observe the following results of Dir.glob:

Patterns working in 2.6.1 and 2.5.3:

Dir['c:'] => ['c:']
Dir['c:/'] => ['c:/']
Dir['c:/projects'] => ['c:/Projects']

Patterns broken in 2.6.1 (but working in 2.5.3)

Dir['{c:}'] => ['Windows']
Dir['{c:/}'] => ['Windows/']
Dir['{c:/projects}'] => []

Some background:
I noticed this problem first in Rails, where the file modification watcher tries to glob a pattern like {c:/dir1/**/*.{rb},c:/dir2/**/*.{rb},c:/dir3/**/*.{rb}}
Due to the bug above, the code reloading feature of Rails is broken using Ruby 2.6.1 on Windows. (Because the pattern is always resolved to an empty array)

Rubies tested:

  • ruby 2.5.3p105 (2018-10-18 revision 65156) [x64-mingw32]
  • ruby 2.6.1p33 (2019-01-30 revision 66950) [x64-mingw32]

Files

0001-dir.c-fix-Dir.glob-starts-with-brace.patch (2.46 KB) 0001-dir.c-fix-Dir.glob-starts-with-brace.patch h.shirosaki (Hiroshi Shirosaki), 03/20/2019 01:32 AM
Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0