I got a problem on Ruby directory searching. I want to implment sth like gitignore file. When some file are listed in an ignore file, it will not be searched.
For example here is a list of directory, if i want to ignore /bar ( and all its sub files)
/bar (directory)
/bar/a.txt
/bar/b.txt
/foo
/foo/c.txt
/foo/d.txt
If I use
Dir["/**/*"]
every file will be searched.
how can i just search through foo directory only?
