summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/NEWS21
1 files changed, 10 insertions, 11 deletions
diff --git a/doc/NEWS b/doc/NEWS
index bd3e7feb25..3c1fbb7c99 100644
--- a/doc/NEWS
+++ b/doc/NEWS
@@ -1,13 +1,9 @@
-: getopts.rb
+: Dir::glob
- Rewrote to fix some bugs and complete features.
- - Accept options with the colon in the first argument;
- getopts("a:bcd:") is equivalent to getopts("bc", "a:", "d:").
- - Do not discard the argument that caused an error.
- - Do not discard '-', which commonly stands for stdin or stdout.
- - Allow specifying a long option with a value using '='.
- (command --long-option=value)
- - Stop reading options when it meets a non-option argument.
+ Now accepts optional FNM_* flags via the second argument, whereas
+ Dir::[] doesn't.
+
+ Dir.glob("makefile", File::FNM_CASEFOLD) #=> ['Makefile', 'makefile']
: tsort module
@@ -210,10 +206,13 @@
Added. Refer to the fnmatch(3) manpage for details.
+ Localism is FNM_DOTMATCH which has the opposite meaning of the
+ commonly known FNM_PERIOD, which does not exist in Ruby.
+
e.g.
- # exclude files matching "*.bak".
- files.reject! {|fn| File.fnmatch?("*.bak", fn) }
+ # exclude files matching "*.bak" case-insensitively.
+ files.reject! {|fn| File.fnmatch?("*.bak", fn, File::FNM_CASEFOLD) }
: File.lchmod
: File.lchown