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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1755df084b5e0bf96439d4fa04cb2d1164a3ac57f6da168a2c1ff27115af6320
4
- data.tar.gz: 602400de39b2eb3fbf808bc1aecbf36d786955503bf7dd7d3582ab391f357b3c
3
+ metadata.gz: 4b3fb255f6688142156dcd25f7f135f4283702339fe02a984e74cb067bb609f1
4
+ data.tar.gz: 173beb635f95bcb3d46ecfcc9c5876f9b1918a67a9659b8374e80faccff723ba
5
5
  SHA512:
6
- metadata.gz: f281c5008cb5ab4035497d8c20efd13247bc96d0d7b28487f88d5b50f28b93d02d14efc00efa9c4cee20c1067c24cc950b7fc98ef5a38ee29bc19ca1d00f0d70
7
- data.tar.gz: feb924a2bcf0d2d74d2b4eeea3e9ac87f7f7efde3d3c55d4b56b265dc74e8dcc6ee32734c96ed775f60fdaa660fe3a693b94243fa44a851dca7d3bfb15f34f92
6
+ metadata.gz: b39806c4eda22347d28a6dc3d3d3e06ad527f4085d80d225c7c4d2d4ac0abbe429b09ddfe2a80557383ca1ba1715fc1fbf91d6fe2fd6df8cb1714c8f53292211
7
+ data.tar.gz: 634836c74fcf79ef76bf6326c623cace0d24d37ed7d007feaa45659bebc88c90770cf4d38a35b93d8f7bbaae0226cae9919e8cbc4e8edff91b905f36944d7d33
data/config/prompt CHANGED
@@ -1 +1,17 @@
1
- Test prompt for setup_config_dir test
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}}
@@ -1,3 +1,3 @@
1
1
  module Jeeves
2
- VERSION = '1.4.0'
2
+ VERSION = '1.6.0'
3
3
  end
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__), '..', '..', 'config', 'prompt')
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}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jeeves-git-commit
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Bishop