module Ameba::GlobUtils

Overview

Helper module that is utilizes helpers for working with globs.

Direct including types

Defined in:

ameba/glob_utils.cr

Instance Method Summary

Instance Method Detail

def expand(globs) #

Expands globs. Globs can point to files or even directories.

expand(["spec/*.cr", "src"]) # => all files in src folder + first level specs

[View source]
def find_files_by_globs(globs) #

Returns all files that match specified globs. Globs can have wildcards or be rejected:

find_files_by_globs(["**/*.cr", "!lib"])

[View source]