git-maintain 0.13.0 → 0.14.2
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.
- checksums.yaml +4 -4
- data/CHANGELOG +12 -0
- data/lib/git-maintain/addons/git-maintain.rb +14 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 14413a6c304673d11dd57a4b5ecec51e2717aff5e77b2b6c7caade9d89a29ed4
|
|
4
|
+
data.tar.gz: 0e74198aea4155a40790169c51123293aa0811ae41b5f0d17e0a8b81f72bbf1b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8ba35679ef2ea3676be16e59db74bbc3266eed55f4ab73f9d28d923f11d67c058833a3eeb984252d5d089b28485d9a44536729f8db68918c371fe6581bf1667
|
|
7
|
+
data.tar.gz: ee69deed0ff1ceb20900d252cd74948921847a488aedd01226001be2a82dc3cf248662a4310fe5ca30188d7fb98ed83d108ca37cb6e1e4c26aec7d53cf458daf
|
data/CHANGELOG
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
------------------
|
|
2
|
+
0.14.2 (2026-09-09)
|
|
3
|
+
------------------
|
|
4
|
+
|
|
5
|
+
------------------
|
|
6
|
+
0.14.1 (2026-09-09)
|
|
7
|
+
------------------
|
|
8
|
+
|
|
9
|
+
------------------
|
|
10
|
+
0.14.0 (2026-09-09)
|
|
11
|
+
------------------
|
|
12
|
+
|
|
1
13
|
------------------
|
|
2
14
|
0.13.0 (2026-09-09)
|
|
3
15
|
------------------
|
|
@@ -124,4 +124,18 @@ mv CHANGELOG.new CHANGELOG")
|
|
|
124
124
|
{ GitMaintain::Branch => CLIClassToolBranch,
|
|
125
125
|
GitMaintain::Repo => CLIClassToolRepo})
|
|
126
126
|
|
|
127
|
+
# Subclass of GitMaintainBranch for cli_class_workEnv repository.
|
|
128
|
+
class WorkEnvBranch < GitMaintainBranch
|
|
129
|
+
# Repository name constant for cli_class_tool.
|
|
130
|
+
REPO_NAME = "workEnv"
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
# Subclass of GitMaintainRepo for workEnv repository.
|
|
134
|
+
class WorkEnvRepo < GitMaintainRepo
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
GitMaintain::registerCustom(WorkEnvBranch::REPO_NAME,
|
|
138
|
+
{ GitMaintain::Branch => WorkEnvBranch,
|
|
139
|
+
GitMaintain::Repo => WorkEnvRepo})
|
|
140
|
+
|
|
127
141
|
end
|