In Ruby, Dir.glob(\"**/*.rb\") (for instance) doesn\'t traverse symlinked directories. Is it possible to get the ** to traverse symlinks?
Dir.glob(\"**/*.rb\")
**
Normally not with recursive search due to the risk of infinite loops.
But, this discussion may help:
Dir.glob("**/*/**/b") will follow a symlink up to once.
Dir.glob("**/*/**/b")