humor

Crates.iohumor
lib.rshumor
version0.0.3
sourcesrc
created_at2022-08-11 11:37:05.731419
updated_at2024-08-12 16:39:05.688011
descriptionA tool to execute commands based on YAML configuration files.
homepagehttps://github.com/AXEwiges/humor
repositoryhttps://github.com/AXEwiges/humor
max_upload_size
id643275
size36,487
AX (AXEwiges)

documentation

README

Humor

Humor is a practical command line tool that supports hierarchical reading of YAML configuration files to execute script instructions.

Humor's idea is to provide developers with a simple tool to manage commonly used commands.

Roadmap

  • Hierarchical configuration
  • Execute commands

Example

Humor can read the default configuration file from ~/.humors, or start reading commands from humor.yaml in the current directory. Humor supports hierarchical reading to meet the call requirements of instructions for different domains, and supports short queries to find the instructions you need.

As in the following example, if you want to execute python -m unittest testall.py, the following commands are equivalent:

humor testall
humor python testall
humor python test testall

Because both Rust and Python have a Humor command called build, the following calls are correct:

humor python build
humor python dev build

humor rust build
humor rust prelude build

Example humor.yaml:

import:
  - /somepath/test.yaml
  - /somepath/dev.yaml

commands:
  rust:
    prelude:
      check: cargo fmt && cargo check
      build: cargo build

Example test.yaml

commands:
  python:
    test:
      testall: python -m unittest testall.py
      testmodule: python -m unittest testmodule.py

Example dev.yaml

commands:
  python:
    dev:
      build: python -m build --wheel
      install: pip install ./dist/somepackage-py3-0.0.1.wheel
Commit count: 0

cargo fmt