jeeves-git-commit 1.4.0 → 1.6.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 +4 -4
- data/config/prompt +17 -1
- data/lib/jeeves/version.rb +1 -1
- data/lib/jeeves.rb +1 -1
- 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: 4b3fb255f6688142156dcd25f7f135f4283702339fe02a984e74cb067bb609f1
|
4
|
+
data.tar.gz: 173beb635f95bcb3d46ecfcc9c5876f9b1918a67a9659b8374e80faccff723ba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b39806c4eda22347d28a6dc3d3d3e06ad527f4085d80d225c7c4d2d4ac0abbe429b09ddfe2a80557383ca1ba1715fc1fbf91d6fe2fd6df8cb1714c8f53292211
|
7
|
+
data.tar.gz: 634836c74fcf79ef76bf6326c623cace0d24d37ed7d007feaa45659bebc88c90770cf4d38a35b93d8f7bbaae0226cae9919e8cbc4e8edff91b905f36944d7d33
|
data/config/prompt
CHANGED
@@ -1 +1,17 @@
|
|
1
|
-
|
1
|
+
Generate a git commit message based on the following diff.
|
2
|
+
|
3
|
+
The commit message should:
|
4
|
+
- Start with an appropriate gitmoji based on the nature of the changes
|
5
|
+
- Follow the Conventional Commits format (https://www.conventionalcommits.org/en/v1.0.0/)
|
6
|
+
- Explain WHAT changed, WHY it changed, and HOW it improves or fixes the current state
|
7
|
+
- Assume the audience is educated software engineers
|
8
|
+
|
9
|
+
Example format:
|
10
|
+
:emoji: type(scope): concise description
|
11
|
+
|
12
|
+
Detailed explanation of the changes, why they were necessary, and their impact.
|
13
|
+
|
14
|
+
Additional context or technical details when relevant.
|
15
|
+
|
16
|
+
DIFF:
|
17
|
+
{{DIFF}}
|
data/lib/jeeves/version.rb
CHANGED
data/lib/jeeves.rb
CHANGED
@@ -84,7 +84,7 @@ module Jeeves
|
|
84
84
|
|
85
85
|
unless File.exist?(PROMPT_FILE)
|
86
86
|
# Check for bundled prompt file in the config directory
|
87
|
-
config_prompt = File.join(File.dirname(__FILE__), '..', '
|
87
|
+
config_prompt = File.join(File.dirname(__FILE__), '..', 'config', 'prompt')
|
88
88
|
|
89
89
|
if File.exist?(config_prompt)
|
90
90
|
puts "Copying bundled prompt file to #{PROMPT_FILE}"
|