The mruby directory structure

+- ๐Ÿ’Ž mruby/                    The top directory of mruby.
    |
    +- ๐Ÿ“ .github/              GitHub configuration files for mruby project management.
    |
    +- ๐Ÿ“ benchmark/            Benchmarking files for mruby.
    |
    +- ๐Ÿ“ bin/                  Links to temporary executables after build. Auto-created.
    |
    +- ๐Ÿ“ build/                Default build output destination for mruby. Auto-created.
    |   |
    |   +- ๐Ÿ“ repos/            The git clone destination directory for GEMs that depend on the build configuration.
    |   |
    |   +- ๐Ÿ“ host/             The "host" build output directory.
    |
    +- ๐Ÿ“ build_config/         Build configuration files for various environments.
    |
    +- ๐Ÿ“ doc/                  Documentation for mruby.
    |   |
    |   +- ๐Ÿ“ guides/           Documentation for general users.
    |   |
    |   +- ๐Ÿ“ internal/         Documentation for internal implementations for developers.
    |
    +- ๐Ÿ“ examples/             Examples of mruby usages.
    |   |
    |   +- ๐Ÿ“ mrbgems/          Examples for creating custom GEM for mruby.
    |
    +- ๐Ÿ“ include/              C header files required when using mruby.
    |
    +- ๐Ÿ“ lib/                  Ruby scripts used for building mruby.
    |
    +- ๐Ÿ“ mrbgems/              A library collection of features not provided by mruby core only.
    |   |                       See doc/guides/mrbgems.md file
    |   |
    |   +- ๐Ÿ“ mruby-*/          The directory of each GEMs.
    |   |
    |   +- ๐Ÿ“ƒ *.gembox          A collection of GEMs grouped by features and purposes.
    |
    +- ๐Ÿ“ mrblib/               The core Ruby scripts that makes up the main body of mruby.
    |
    +- ๐Ÿ“ oss-fuzz/             Source code for The fuzzing-test.
    |                           See https://github.com/google/oss-fuzz
    |
    +- ๐Ÿ“ src/                  The core C source code that makes up the main body of mruby.
    |
    +- ๐Ÿ“ tasks/                Rake tasks at build-time.
    |   |
    |   +- ๐Ÿ“ toolchains/       Definitions for the compiler, linker, archiver, etc. for each toolchain.
    |
    +- ๐Ÿ“ test/                 Ruby scripts needed for testing mruby.
    |   |
    |   +- ๐Ÿ“ t/                mruby test cases.
    |
    +- ๐Ÿ“ tools/                External programs used for the mruby project.
        |
        +- ๐Ÿ“ lrama/            LALR parser generator as an alternative to bison.
                                Import from https://github.com/ruby/lrama