gaffr 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. gaffr-0.1.3/.gitignore +26 -0
  2. gaffr-0.1.3/Cargo.lock +3397 -0
  3. gaffr-0.1.3/Cargo.toml +144 -0
  4. gaffr-0.1.3/LICENSE +21 -0
  5. gaffr-0.1.3/PKG-INFO +174 -0
  6. gaffr-0.1.3/README.md +163 -0
  7. gaffr-0.1.3/SECURITY.md +68 -0
  8. gaffr-0.1.3/action.yml +47 -0
  9. gaffr-0.1.3/almanac.yml +38 -0
  10. gaffr-0.1.3/build.rs +3 -0
  11. gaffr-0.1.3/diataxis.yml +2 -0
  12. gaffr-0.1.3/docs/configuration.md +832 -0
  13. gaffr-0.1.3/docs/getting-started.md +65 -0
  14. gaffr-0.1.3/docs/how-it-works.md +47 -0
  15. gaffr-0.1.3/docs/man/gaff.1 +365 -0
  16. gaffr-0.1.3/flake.lock +64 -0
  17. gaffr-0.1.3/flake.nix +136 -0
  18. gaffr-0.1.3/homebrew/gaff.rb +44 -0
  19. gaffr-0.1.3/pyproject.toml +27 -0
  20. gaffr-0.1.3/skills/gaff/SKILL.md +113 -0
  21. gaffr-0.1.3/src/adapter.rs +583 -0
  22. gaffr-0.1.3/src/bin/gaffr.rs +24 -0
  23. gaffr-0.1.3/src/cli.rs +2867 -0
  24. gaffr-0.1.3/src/config.rs +1902 -0
  25. gaffr-0.1.3/src/docs.rs +64 -0
  26. gaffr-0.1.3/src/engine.rs +1008 -0
  27. gaffr-0.1.3/src/error.rs +101 -0
  28. gaffr-0.1.3/src/event.rs +406 -0
  29. gaffr-0.1.3/src/ghworkflow.rs +796 -0
  30. gaffr-0.1.3/src/githook.rs +883 -0
  31. gaffr-0.1.3/src/guard.rs +1860 -0
  32. gaffr-0.1.3/src/handler.rs +1039 -0
  33. gaffr-0.1.3/src/hookagent.rs +383 -0
  34. gaffr-0.1.3/src/init.rs +615 -0
  35. gaffr-0.1.3/src/lib.rs +26 -0
  36. gaffr-0.1.3/src/main.rs +11 -0
  37. gaffr-0.1.3/src/reviewnote.rs +825 -0
  38. gaffr-0.1.3/src/state.rs +1032 -0
  39. gaffr-0.1.3/tests/docs_pages.rs +131 -0
  40. gaffr-0.1.3/tests/man_page_covers_the_cli.rs +170 -0
  41. gaffr-0.1.3/tests/review_note_reads_a_real_repository.rs +432 -0
  42. gaffr-0.1.3/tests/short_name_shim.rs +32 -0
  43. gaffr-0.1.3/tests/single_binary.rs +56 -0
gaffr-0.1.3/.gitignore ADDED
@@ -0,0 +1,26 @@
1
+ /target
2
+ /tests/missouri/.missouri/bin/
3
+ /result
4
+ /result-*
5
+
6
+ # Coding-agent and editor local state. Machine-specific, and one of
7
+ # these reached public history before.
8
+ /.claude/
9
+ /.cursor/
10
+ /.aider*
11
+ /.gaff-state/
12
+ *.swp
13
+ *~
14
+ \#*\#
15
+ .DS_Store
16
+
17
+ # Local dependency overrides. A path override names a directory on one
18
+ # machine, so it exposes the account layout and breaks every other
19
+ # clone. Keep them here, never in Cargo.toml.
20
+ /.cargo/config.toml
21
+ /config.toml
22
+
23
+ # Generated by npm/generate.mjs at release time: one package per
24
+ # platform, each holding a built binary. A binary does not belong in
25
+ # git, and one committed by accident ships inside the crate.
26
+ npm/gaffr-*/