haraka 0.2.16__tar.gz → 0.2.18__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 (36) hide show
  1. {haraka-0.2.16 → haraka-0.2.18}/PKG-INFO +1 -1
  2. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/service/purge.py +5 -1
  3. {haraka-0.2.16 → haraka-0.2.18}/haraka/utils/manifests/go-grpc-protoc.yml +8 -0
  4. {haraka-0.2.16 → haraka-0.2.18}/haraka/utils/manifests/java-springboot.yml +6 -0
  5. {haraka-0.2.16 → haraka-0.2.18}/haraka/utils/manifests/python-fastapi.yml +4 -0
  6. {haraka-0.2.16 → haraka-0.2.18}/haraka.egg-info/PKG-INFO +1 -1
  7. {haraka-0.2.16 → haraka-0.2.18}/pyproject.toml +1 -1
  8. {haraka-0.2.16 → haraka-0.2.18}/MANIFEST.in +0 -0
  9. {haraka-0.2.16 → haraka-0.2.18}/haraka/__init__.py +0 -0
  10. {haraka-0.2.16 → haraka-0.2.18}/haraka/art/__init__.py +0 -0
  11. {haraka-0.2.16 → haraka-0.2.18}/haraka/art/ascii/__init__.py +0 -0
  12. {haraka-0.2.16 → haraka-0.2.18}/haraka/art/ascii/assets.py +0 -0
  13. {haraka-0.2.16 → haraka-0.2.18}/haraka/art/ascii/frame/__init__.py +0 -0
  14. {haraka-0.2.16 → haraka-0.2.18}/haraka/art/ascii/frame/border.py +0 -0
  15. {haraka-0.2.16 → haraka-0.2.18}/haraka/art/ascii/frame/framer.py +0 -0
  16. {haraka-0.2.16 → haraka-0.2.18}/haraka/art/ascii/frame/width_utils.py +0 -0
  17. {haraka-0.2.16 → haraka-0.2.18}/haraka/art/create.py +0 -0
  18. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/__init__.py +0 -0
  19. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/config/__init__.py +0 -0
  20. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/config/config.py +0 -0
  21. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/runner.py +0 -0
  22. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/service/__init__.py +0 -0
  23. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/service/assets.py +0 -0
  24. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/service/command.py +0 -0
  25. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/service/files.py +0 -0
  26. {haraka-0.2.16 → haraka-0.2.18}/haraka/post_gen/service/gitops.py +0 -0
  27. {haraka-0.2.16 → haraka-0.2.18}/haraka/utils/__init__.py +0 -0
  28. {haraka-0.2.16 → haraka-0.2.18}/haraka/utils/common/__init__.py +0 -0
  29. {haraka-0.2.16 → haraka-0.2.18}/haraka/utils/common/utils.py +0 -0
  30. {haraka-0.2.16 → haraka-0.2.18}/haraka/utils/logging/__init__.py +0 -0
  31. {haraka-0.2.16 → haraka-0.2.18}/haraka/utils/logging/log_util.py +0 -0
  32. {haraka-0.2.16 → haraka-0.2.18}/haraka/utils/manifests/go-grpc-gateway-buf.yml +0 -0
  33. {haraka-0.2.16 → haraka-0.2.18}/haraka.egg-info/SOURCES.txt +0 -0
  34. {haraka-0.2.16 → haraka-0.2.18}/haraka.egg-info/dependency_links.txt +0 -0
  35. {haraka-0.2.16 → haraka-0.2.18}/haraka.egg-info/top_level.txt +0 -0
  36. {haraka-0.2.16 → haraka-0.2.18}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: haraka
3
- Version: 0.2.16
3
+ Version: 0.2.18
4
4
  Summary: Reusable post-generation helper for Cookiecutter micro-service templates
5
5
  Author-email: Will Burks <will@example.com>
6
6
  License: MIT
@@ -89,7 +89,11 @@ class ResourcePurger:
89
89
 
90
90
  if spec.match_file(rel):
91
91
  self._log.debug(f"Path matches keep patterns: {rel}")
92
- self._log.debug(f"Keeping: {rel}")
92
+ self._log.debug(f"Keeping file: {rel}")
93
+ continue
94
+ elif path.is_dir() and spec.match_file(f"{rel}/"):
95
+ self._log.debug(f"Path matches keep patterns: {rel}")
96
+ self._log.debug(f"Keeping directory: {rel}")
93
97
  continue
94
98
 
95
99
  if path.is_dir():
@@ -2,14 +2,19 @@ variant: go-grpc-protoc
2
2
 
3
3
  keep:
4
4
  # ── application source (Go) ─────────────────────────
5
+ - cmd/
5
6
  - cmd/**
7
+ - internal/
6
8
  - internal/**
9
+ - pkg/proto/
7
10
  - pkg/proto/**
11
+ - configs/
8
12
  - configs/**
9
13
  - go.mod
10
14
  - git.ignore
11
15
 
12
16
  # ── tests ───────────────────────────────────────────
17
+ - test/
13
18
  - test/**
14
19
 
15
20
  # ── build & project metadata ────────────────────────
@@ -18,9 +23,12 @@ keep:
18
23
  - README.md
19
24
 
20
25
  # ── IDE / run configs ───────────────────────────────
26
+ - runConfigurations/Go/
21
27
  - runConfigurations/Go/**
22
28
 
23
29
  # ── deployment & infra (shared) ─────────────────────
24
30
  - skaffold.yaml
31
+ - chart/
25
32
  - chart/**
33
+ - infra/
26
34
  - infra/**
@@ -2,10 +2,13 @@ variant: java-springboot
2
2
 
3
3
  keep:
4
4
  # ── application source ────────────────────────────
5
+ - src/main/java/
5
6
  - src/main/java/**
7
+ - src/main/resources/
6
8
  - src/main/resources/**
7
9
 
8
10
  # ── tests ─────────────────────────────────────────
11
+ - src/test/java/
9
12
  - src/test/java/**
10
13
 
11
14
  # ── build & project metadata ──────────────────────
@@ -15,9 +18,12 @@ keep:
15
18
  - README.md
16
19
 
17
20
  # ── IDE / run configs ─────────────────────────────
21
+ - runConfigurations/SpringBoot/
18
22
  - runConfigurations/SpringBoot/**
19
23
 
20
24
  # ── deployment & infra (shared) ───────────────────
21
25
  - skaffold.yaml
26
+ - chart/
22
27
  - chart/**
28
+ - infra/
23
29
  - infra/**
@@ -2,9 +2,11 @@ variant: python-fastapi
2
2
 
3
3
  keep:
4
4
  # ── application source ─────────────────────────────
5
+ - src/app/
5
6
  - src/app/**
6
7
 
7
8
  # ── tests ──────────────────────────────────────────
9
+ - tests/
8
10
  - tests/**
9
11
  - pytest.ini
10
12
 
@@ -19,5 +21,7 @@ keep:
19
21
 
20
22
  # ── deployment & infra (shared) ────────────────────
21
23
  - skaffold.yaml
24
+ - chart/
22
25
  - chart/**
26
+ - infra/
23
27
  - infra/**
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: haraka
3
- Version: 0.2.16
3
+ Version: 0.2.18
4
4
  Summary: Reusable post-generation helper for Cookiecutter micro-service templates
5
5
  Author-email: Will Burks <will@example.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "haraka"
7
- version = "0.2.16"
7
+ version = "0.2.18"
8
8
  description = "Reusable post-generation helper for Cookiecutter micro-service templates"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes
File without changes
File without changes
File without changes