summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-04 01:19:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-04 01:19:11 +0000
commite59d5667c7769ffbe77f50687cb4393ca9280b2b (patch)
tree3be4e57580f1ad886bb48661ffd1a7b1f309f5cb /NEWS
parent7ba2f1a9ddd7efc36aa3bfddbefc262b5fe6c990 (diff)
dir.c: FNM_EXTGLOB
* dir.c (file_s_fnmatch): match with expanding braces if FNM_EXTGLOB is set. [ruby-core:40037] [Feature #5422] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 17b44b18a2..4190fe7a32 100644
--- a/NEWS
+++ b/NEWS
@@ -31,6 +31,11 @@ with all sufficient information, see the ChangeLog file.
* aliased method:
* ENV.to_h is a new alias for ENV.to_hash
+ * File:
+ * extended method:
+ * File.fnmatch? now expands braces in the pattern if
+ File::FNM_EXTGLOB option is given.
+
* Hash
* added method:
* added Hash#to_h as explicit conversion method, like Array#to_a.