Helper module that utilizes helpers for working with globs.
Instance methods
expand(globs, root =
Dir.current)
Expands globs. Globs can point to files or even directories.
expand(["spec/*.cr", "src"]) # => all files in src folder + first level specs
Sourcefind_files_by_globs(globs, root =
Dir.current)
Returns all files that match specified globs.
Globs can have wildcards or be rejected:
find_files_by_globs(["**/*.cr", "!lib"])
Source