diff options
author | Kenichi Kamiya <kachick1@gmail.com> | 2019-08-19 17:30:59 +0900 |
---|---|---|
committer | Takashi Kokubun <takashikkbn@gmail.com> | 2019-08-19 17:30:59 +0900 |
commit | 605d2ce9b98c4306505c8be05483e3d296db5f1e (patch) | |
tree | 8907429dabc42eb3a28349892e13b9bdb9f1b781 /sample | |
parent | 45454bdb8b25def782677dceb92cfd7b2d8b83c1 (diff) | |
download | bundler-605d2ce9b98c4306505c8be05483e3d296db5f1e.tar.gz |
Accurate a sample to show having some ext (#2385)
Diffstat (limited to 'sample')
-rw-r--r-- | sample/dir.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/dir.rb b/sample/dir.rb index 44733c2cf4..0c55078973 100644 --- a/sample/dir.rb +++ b/sample/dir.rb @@ -3,7 +3,7 @@ dirp = Dir.open(".") for f in dirp case f - when /\A\./, /~\z/, /\.o/ + when /\A\./, /~\z/, /\.o\z/ # do not print else print f, "\n" |