File: AGENTS.md

package info (click to toggle)
ruby-zeitwerk 2.7.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 752 kB
  • sloc: ruby: 6,467; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 652 bytes parent folder | download
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>`