ace-git 0.18.0
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 +7 -0
- data/.ace-defaults/git/config.yml +83 -0
- data/.ace-defaults/nav/protocols/guide-sources/ace-git.yml +10 -0
- data/.ace-defaults/nav/protocols/tmpl-sources/ace-git.yml +19 -0
- data/.ace-defaults/nav/protocols/wfi-sources/ace-git.yml +19 -0
- data/CHANGELOG.md +762 -0
- data/LICENSE +21 -0
- data/README.md +48 -0
- data/Rakefile +14 -0
- data/docs/demo/ace-git-getting-started.gif +0 -0
- data/docs/demo/ace-git-getting-started.tape.yml +18 -0
- data/docs/demo/fixtures/README.md +3 -0
- data/docs/demo/fixtures/sample.txt +1 -0
- data/docs/getting-started.md +87 -0
- data/docs/handbook.md +50 -0
- data/docs/usage.md +259 -0
- data/exe/ace-git +37 -0
- data/handbook/guides/version-control/ruby.md +41 -0
- data/handbook/guides/version-control/rust.md +49 -0
- data/handbook/guides/version-control/typescript.md +47 -0
- data/handbook/guides/version-control-system-git.g.md +829 -0
- data/handbook/skills/as-git-rebase/SKILL.md +43 -0
- data/handbook/skills/as-git-reorganize-commits/SKILL.md +41 -0
- data/handbook/skills/as-github-pr-create/SKILL.md +60 -0
- data/handbook/skills/as-github-pr-update/SKILL.md +41 -0
- data/handbook/skills/as-github-release-publish/SKILL.md +58 -0
- data/handbook/templates/commit/squash.template.md +59 -0
- data/handbook/templates/pr/bugfix.template.md +103 -0
- data/handbook/templates/pr/default.template.md +40 -0
- data/handbook/templates/pr/feature.template.md +41 -0
- data/handbook/workflow-instructions/git/rebase.wf.md +402 -0
- data/handbook/workflow-instructions/git/reorganize-commits.wf.md +158 -0
- data/handbook/workflow-instructions/github/pr/create.wf.md +282 -0
- data/handbook/workflow-instructions/github/pr/update.wf.md +199 -0
- data/handbook/workflow-instructions/github/release-publish.wf.md +162 -0
- data/lib/ace/git/atoms/command_executor.rb +253 -0
- data/lib/ace/git/atoms/date_resolver.rb +129 -0
- data/lib/ace/git/atoms/diff_numstat_parser.rb +82 -0
- data/lib/ace/git/atoms/diff_parser.rb +110 -0
- data/lib/ace/git/atoms/file_grouper.rb +152 -0
- data/lib/ace/git/atoms/git_scope_filter.rb +86 -0
- data/lib/ace/git/atoms/git_status_fetcher.rb +29 -0
- data/lib/ace/git/atoms/grouped_stats_formatter.rb +233 -0
- data/lib/ace/git/atoms/lock_error_detector.rb +79 -0
- data/lib/ace/git/atoms/pattern_filter.rb +156 -0
- data/lib/ace/git/atoms/pr_identifier_parser.rb +88 -0
- data/lib/ace/git/atoms/repository_checker.rb +97 -0
- data/lib/ace/git/atoms/repository_state_detector.rb +92 -0
- data/lib/ace/git/atoms/stale_lock_cleaner.rb +247 -0
- data/lib/ace/git/atoms/status_formatter.rb +180 -0
- data/lib/ace/git/atoms/task_pattern_extractor.rb +57 -0
- data/lib/ace/git/atoms/time_formatter.rb +84 -0
- data/lib/ace/git/cli/commands/branch.rb +62 -0
- data/lib/ace/git/cli/commands/diff.rb +252 -0
- data/lib/ace/git/cli/commands/pr.rb +119 -0
- data/lib/ace/git/cli/commands/status.rb +84 -0
- data/lib/ace/git/cli.rb +87 -0
- data/lib/ace/git/models/diff_config.rb +185 -0
- data/lib/ace/git/models/diff_result.rb +94 -0
- data/lib/ace/git/models/repo_status.rb +202 -0
- data/lib/ace/git/molecules/branch_reader.rb +92 -0
- data/lib/ace/git/molecules/config_loader.rb +108 -0
- data/lib/ace/git/molecules/diff_filter.rb +102 -0
- data/lib/ace/git/molecules/diff_generator.rb +160 -0
- data/lib/ace/git/molecules/git_status_fetcher.rb +32 -0
- data/lib/ace/git/molecules/pr_metadata_fetcher.rb +286 -0
- data/lib/ace/git/molecules/recent_commits_fetcher.rb +53 -0
- data/lib/ace/git/organisms/diff_orchestrator.rb +178 -0
- data/lib/ace/git/organisms/repo_status_loader.rb +264 -0
- data/lib/ace/git/version.rb +7 -0
- data/lib/ace/git.rb +230 -0
- metadata +201 -0
metadata
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: ace-git
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.18.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Michal Czyz
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: ace-support-config
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '0.7'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '0.7'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: ace-support-core
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0.24'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0.24'
|
|
40
|
+
- !ruby/object:Gem::Dependency
|
|
41
|
+
name: ace-support-cli
|
|
42
|
+
requirement: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0.3'
|
|
47
|
+
type: :runtime
|
|
48
|
+
prerelease: false
|
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '0.3'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: ace-support-test-helpers
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0.12'
|
|
61
|
+
type: :development
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0.12'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: minitest
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - "~>"
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '5.0'
|
|
75
|
+
type: :development
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '5.0'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: rake
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '13.0'
|
|
89
|
+
type: :development
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - "~>"
|
|
94
|
+
- !ruby/object:Gem::Version
|
|
95
|
+
version: '13.0'
|
|
96
|
+
description: ace-git gives developers and coding agents focused git context commands
|
|
97
|
+
and guided workflows for rebases, pull requests, and commit reorganization, with
|
|
98
|
+
smart diff output and Git 2.23+ guardrails.
|
|
99
|
+
email:
|
|
100
|
+
- mc@cs3b.com
|
|
101
|
+
executables:
|
|
102
|
+
- ace-git
|
|
103
|
+
extensions: []
|
|
104
|
+
extra_rdoc_files: []
|
|
105
|
+
files:
|
|
106
|
+
- ".ace-defaults/git/config.yml"
|
|
107
|
+
- ".ace-defaults/nav/protocols/guide-sources/ace-git.yml"
|
|
108
|
+
- ".ace-defaults/nav/protocols/tmpl-sources/ace-git.yml"
|
|
109
|
+
- ".ace-defaults/nav/protocols/wfi-sources/ace-git.yml"
|
|
110
|
+
- CHANGELOG.md
|
|
111
|
+
- LICENSE
|
|
112
|
+
- README.md
|
|
113
|
+
- Rakefile
|
|
114
|
+
- docs/demo/ace-git-getting-started.gif
|
|
115
|
+
- docs/demo/ace-git-getting-started.tape.yml
|
|
116
|
+
- docs/demo/fixtures/README.md
|
|
117
|
+
- docs/demo/fixtures/sample.txt
|
|
118
|
+
- docs/getting-started.md
|
|
119
|
+
- docs/handbook.md
|
|
120
|
+
- docs/usage.md
|
|
121
|
+
- exe/ace-git
|
|
122
|
+
- handbook/guides/version-control-system-git.g.md
|
|
123
|
+
- handbook/guides/version-control/ruby.md
|
|
124
|
+
- handbook/guides/version-control/rust.md
|
|
125
|
+
- handbook/guides/version-control/typescript.md
|
|
126
|
+
- handbook/skills/as-git-rebase/SKILL.md
|
|
127
|
+
- handbook/skills/as-git-reorganize-commits/SKILL.md
|
|
128
|
+
- handbook/skills/as-github-pr-create/SKILL.md
|
|
129
|
+
- handbook/skills/as-github-pr-update/SKILL.md
|
|
130
|
+
- handbook/skills/as-github-release-publish/SKILL.md
|
|
131
|
+
- handbook/templates/commit/squash.template.md
|
|
132
|
+
- handbook/templates/pr/bugfix.template.md
|
|
133
|
+
- handbook/templates/pr/default.template.md
|
|
134
|
+
- handbook/templates/pr/feature.template.md
|
|
135
|
+
- handbook/workflow-instructions/git/rebase.wf.md
|
|
136
|
+
- handbook/workflow-instructions/git/reorganize-commits.wf.md
|
|
137
|
+
- handbook/workflow-instructions/github/pr/create.wf.md
|
|
138
|
+
- handbook/workflow-instructions/github/pr/update.wf.md
|
|
139
|
+
- handbook/workflow-instructions/github/release-publish.wf.md
|
|
140
|
+
- lib/ace/git.rb
|
|
141
|
+
- lib/ace/git/atoms/command_executor.rb
|
|
142
|
+
- lib/ace/git/atoms/date_resolver.rb
|
|
143
|
+
- lib/ace/git/atoms/diff_numstat_parser.rb
|
|
144
|
+
- lib/ace/git/atoms/diff_parser.rb
|
|
145
|
+
- lib/ace/git/atoms/file_grouper.rb
|
|
146
|
+
- lib/ace/git/atoms/git_scope_filter.rb
|
|
147
|
+
- lib/ace/git/atoms/git_status_fetcher.rb
|
|
148
|
+
- lib/ace/git/atoms/grouped_stats_formatter.rb
|
|
149
|
+
- lib/ace/git/atoms/lock_error_detector.rb
|
|
150
|
+
- lib/ace/git/atoms/pattern_filter.rb
|
|
151
|
+
- lib/ace/git/atoms/pr_identifier_parser.rb
|
|
152
|
+
- lib/ace/git/atoms/repository_checker.rb
|
|
153
|
+
- lib/ace/git/atoms/repository_state_detector.rb
|
|
154
|
+
- lib/ace/git/atoms/stale_lock_cleaner.rb
|
|
155
|
+
- lib/ace/git/atoms/status_formatter.rb
|
|
156
|
+
- lib/ace/git/atoms/task_pattern_extractor.rb
|
|
157
|
+
- lib/ace/git/atoms/time_formatter.rb
|
|
158
|
+
- lib/ace/git/cli.rb
|
|
159
|
+
- lib/ace/git/cli/commands/branch.rb
|
|
160
|
+
- lib/ace/git/cli/commands/diff.rb
|
|
161
|
+
- lib/ace/git/cli/commands/pr.rb
|
|
162
|
+
- lib/ace/git/cli/commands/status.rb
|
|
163
|
+
- lib/ace/git/models/diff_config.rb
|
|
164
|
+
- lib/ace/git/models/diff_result.rb
|
|
165
|
+
- lib/ace/git/models/repo_status.rb
|
|
166
|
+
- lib/ace/git/molecules/branch_reader.rb
|
|
167
|
+
- lib/ace/git/molecules/config_loader.rb
|
|
168
|
+
- lib/ace/git/molecules/diff_filter.rb
|
|
169
|
+
- lib/ace/git/molecules/diff_generator.rb
|
|
170
|
+
- lib/ace/git/molecules/git_status_fetcher.rb
|
|
171
|
+
- lib/ace/git/molecules/pr_metadata_fetcher.rb
|
|
172
|
+
- lib/ace/git/molecules/recent_commits_fetcher.rb
|
|
173
|
+
- lib/ace/git/organisms/diff_orchestrator.rb
|
|
174
|
+
- lib/ace/git/organisms/repo_status_loader.rb
|
|
175
|
+
- lib/ace/git/version.rb
|
|
176
|
+
homepage: https://github.com/cs3b/ace/tree/main/ace-git
|
|
177
|
+
licenses:
|
|
178
|
+
- MIT
|
|
179
|
+
metadata:
|
|
180
|
+
allowed_push_host: https://rubygems.org
|
|
181
|
+
homepage_uri: https://github.com/cs3b/ace/tree/main/ace-git
|
|
182
|
+
source_code_uri: https://github.com/cs3b/ace
|
|
183
|
+
changelog_uri: https://github.com/cs3b/ace/blob/main/ace-git/CHANGELOG.md
|
|
184
|
+
rdoc_options: []
|
|
185
|
+
require_paths:
|
|
186
|
+
- lib
|
|
187
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
188
|
+
requirements:
|
|
189
|
+
- - ">="
|
|
190
|
+
- !ruby/object:Gem::Version
|
|
191
|
+
version: 3.2.0
|
|
192
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
193
|
+
requirements:
|
|
194
|
+
- - ">="
|
|
195
|
+
- !ruby/object:Gem::Version
|
|
196
|
+
version: '0'
|
|
197
|
+
requirements: []
|
|
198
|
+
rubygems_version: 3.6.9
|
|
199
|
+
specification_version: 4
|
|
200
|
+
summary: Git workflows and context commands for developers and AI agents
|
|
201
|
+
test_files: []
|