===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
ruby-zeitwerk-2.4.2/CHANGELOG.md-111-
ruby-zeitwerk-2.4.2/CHANGELOG.md:112:* `loader.log!` is a convenient shortcut to get traces to `$stdout`.
ruby-zeitwerk-2.4.2/CHANGELOG.md-113-
##############################################
ruby-zeitwerk-2.4.2/CHANGELOG.md-172-
ruby-zeitwerk-2.4.2/CHANGELOG.md:173:* Files shadowed by previous occurrences defining the same constant path were being correctly skipped when autoloading, but not when eager loading. This has been fixed. This mimicks what happens when there are two files in `$LOAD_PATH` with the same relative name, only the first one is loaded by `require`.
ruby-zeitwerk-2.4.2/CHANGELOG.md-174-
##############################################
ruby-zeitwerk-2.4.2/PROJECT_RULES.md-27-* As soon as a relative file name comes from outside, it has to be converted to an absolute file name right away.
ruby-zeitwerk-2.4.2/PROJECT_RULES.md:28:* Internally, you have to use exclusively absolute file names. In particular, any `autoload` or `require` calls have to be issued using absolute paths to avoid `$LOAD_PATH` walks.
ruby-zeitwerk-2.4.2/PROJECT_RULES.md-29-* It is forbidden to do any sort of directory lookups resolving relative file names.
##############################################
ruby-zeitwerk-2.4.2/README.md-60-
ruby-zeitwerk-2.4.2/README.md:61:Internally, Zeitwerk issues `require` calls exclusively using absolute file names, so there are no costly file system lookups in `$LOAD_PATH`. Technically, the directories managed by Zeitwerk do not even need to be in `$LOAD_PATH`.
ruby-zeitwerk-2.4.2/README.md-62-
##############################################
ruby-zeitwerk-2.4.2/README.md-556-
ruby-zeitwerk-2.4.2/README.md:557:The `log!` method is a quick shortcut to let the loader log to `$stdout`:
ruby-zeitwerk-2.4.2/README.md-558-
##############################################
ruby-zeitwerk-2.4.2/README.md-762-
ruby-zeitwerk-2.4.2/README.md:763:3. In that line, if two loaders manage files that translate to the same constant in the same namespace, the first one wins, the rest are ignored. Similar to what happens with `require` and `$LOAD_PATH`, only the first occurrence matters.
ruby-zeitwerk-2.4.2/README.md-764-
##############################################
ruby-zeitwerk-2.4.2/lib/zeitwerk/loader.rb-386-    # Eager loads all files in the root directories, recursively. Files do not
ruby-zeitwerk-2.4.2/lib/zeitwerk/loader.rb:387:    # need to be in `$LOAD_PATH`, absolute file names are used. Ignored files
ruby-zeitwerk-2.4.2/lib/zeitwerk/loader.rb-388-    # are not eager loaded. You can opt-out specifically in specific files and
##############################################
ruby-zeitwerk-2.4.2/lib/zeitwerk/loader.rb-454-
ruby-zeitwerk-2.4.2/lib/zeitwerk/loader.rb:455:    # Logs to `$stdout`, handy shortcut for debugging.
ruby-zeitwerk-2.4.2/lib/zeitwerk/loader.rb-456-    #