1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
# Zeitwerk
## Introduction
This is the repository for the Ruby gem Zeitwerk, which provides autoloading, eager loading, and reloading for Ruby projects.
## Development tips
- Read the README.md.
- Study the current implemetation under the `lib` directory.
- Study the existing test suite under `test`.
- Execute commands for Ruby tools with `mise exec -- <command>`.
## Code style
- Read PROJECT_RULES.md.
## Testing tips
- How to run the entire test suite: `mixe exec -- bin/test`.
- How to run the tests in a certain file: `mise exec -- bin/test <file>`
- How to run the test in a certain file and line: `mise exec -- bin/test <file>:<line>`
|