conventional_commits 0.2.0 → 0.2.1
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/.conventional_commits/config.yml +1 -1
- data/Gemfile.lock +2 -2
- data/lib/branch/branch_name_generator.rb +11 -3
- data/lib/commit/commit_message_generator.rb +8 -5
- data/lib/commit/commit_message_parser.rb +4 -2
- data/lib/configuration.rb +1 -0
- data/lib/conventional_commits/version.rb +1 -1
- data/lib/models/branch_configuration.rb +4 -2
- data/sig/conventional_commits/configuration/branch_configuration.rbs +5 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cdfa634e8de20bca992561a53e037bb56b0e6cd26e710820c49f0191fb941d6
|
4
|
+
data.tar.gz: 2f6a979054978822a1a6575c0e01f00bff5a1a7b614aa3b88ebd760dcccffcd0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b92ddc49f4c7dad22d33c3b17b4a1a90ae168aee072e762e66650b5acb81e6b639030abd27bed2f4551a4947e91b10fb8473f491a0b73512d740377a4358b38d
|
7
|
+
data.tar.gz: fab82ec8dbd72ae32a40a6946f7dcd670dde1664548f0c160f2f003b40a782b8b57357d3322994cc8e0e8ce32c366a793cf61069e0182590861d90a2d6ce50b1
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
conventional_commits (0.
|
4
|
+
conventional_commits (0.2.0)
|
5
5
|
open3
|
6
6
|
thor
|
7
7
|
yaml
|
@@ -52,7 +52,7 @@ GEM
|
|
52
52
|
language_server-protocol (3.17.0.3)
|
53
53
|
mini_mime (1.1.5)
|
54
54
|
multi_test (1.1.0)
|
55
|
-
open3 (0.
|
55
|
+
open3 (0.2.1)
|
56
56
|
parallel (1.24.0)
|
57
57
|
parser (3.3.0.5)
|
58
58
|
ast (~> 2.4.1)
|
@@ -32,12 +32,19 @@ module ConventionalCommits
|
|
32
32
|
modified_input = splits[1] || ""
|
33
33
|
end
|
34
34
|
out.push(modified_input) unless modified_input.empty?
|
35
|
-
if delimiters.length
|
35
|
+
if delimiters.length > out.length
|
36
36
|
raise ConventionalCommits::GenericError,
|
37
37
|
"The branch doesnt respect the template, expect #{delimiters.length} delimiters. Received: #{received}".strip
|
38
38
|
end
|
39
39
|
|
40
|
-
out
|
40
|
+
scope_is_included = out.length == Configuration::MAX_ELEMENTS_IN_PATTERN
|
41
|
+
idx_adj = scope_is_included ? 1 : 0
|
42
|
+
components = { scope: nil, type: nil, ticket_number: nil, description: nil }
|
43
|
+
components[:scope] = out.length == Configuration::MAX_ELEMENTS_IN_PATTERN ? out[0] : nil
|
44
|
+
components[:type] = out[0 + idx_adj]
|
45
|
+
components[:ticket_number] = out[1 + idx_adj]
|
46
|
+
components[:description] = out[2 + idx_adj]
|
47
|
+
components
|
41
48
|
end
|
42
49
|
|
43
50
|
def is_valid_branch(_input, path: Configuration::DEFAULT_CONFIGURATION_PATH)
|
@@ -47,7 +54,8 @@ module ConventionalCommits
|
|
47
54
|
private
|
48
55
|
|
49
56
|
def find_delimiters_from_pattern(pattern: string)
|
50
|
-
delimiters = pattern.gsub(/<
|
57
|
+
delimiters = pattern.gsub(/<scope>/, "<replace>")
|
58
|
+
.gsub(/<type>/, "<replace>")
|
51
59
|
.gsub(/<ticket>/, "<replace>")
|
52
60
|
.gsub(/<description>/, "<replace>")
|
53
61
|
.split("<replace>")
|
@@ -8,19 +8,22 @@ module ConventionalCommits
|
|
8
8
|
main_config = Configuration::MainConfigurationReader.new.get_configuration(path: cfg_path)
|
9
9
|
configuration = main_config.branch
|
10
10
|
components = BranchNameGenerator.new.branch_name_components(branch_name, path: cfg_path)
|
11
|
-
|
12
|
-
|
13
|
-
|
11
|
+
scope = (components[:scope] || "").downcase
|
12
|
+
type = (components[:type] || "").downcase
|
13
|
+
ticket_number = components[:ticket_number] || ""
|
14
|
+
description = components[:description] || ""
|
14
15
|
description = description.gsub(/-/, " ").gsub(/_/, " ")
|
15
16
|
|
16
17
|
unless main_config.type.is_allowed(type)
|
17
18
|
raise ConventionalCommits::GenericError,
|
18
19
|
"The type #{type} is not allowed. Allowed types #{main_config.type.all_types}"
|
19
20
|
end
|
20
|
-
type = "#{main_config.type.main_type(type)}: #{description}".strip
|
21
21
|
|
22
|
+
type = "#{main_config.type.main_type(type)}(#{scope}): #{description}".strip
|
23
|
+
|
24
|
+
ticket_ref = "#{configuration.ticket_prefix}#{configuration.ticket}#{configuration.ticket_separator}#{ticket_number}"
|
22
25
|
body = custom_body.strip.empty? ? Configuration::DEFAULT_COMMIT_BODY_TEMPLATE : custom_body.strip
|
23
|
-
footer = "Ref:
|
26
|
+
footer = "Ref: #{ticket_ref}".strip
|
24
27
|
"#{type}\n\n#{body}\n\n#{footer}"
|
25
28
|
end
|
26
29
|
|
@@ -24,8 +24,10 @@ module ConventionalCommits
|
|
24
24
|
raise raise GenericError,
|
25
25
|
"Subject doesnt respect the format"
|
26
26
|
end
|
27
|
-
|
28
|
-
components
|
27
|
+
scope_split = subject_components[0].split(/\(([^)]+)\)/)
|
28
|
+
components = { scope: nil, type: "", title: "", body: "" }
|
29
|
+
components[:scope] = scope_split.length > 1 ? scope_split[1] : nil
|
30
|
+
components[:type] = scope_split[0]
|
29
31
|
components[:title] = subject_components[1]
|
30
32
|
components[:body] = msg_components[2]
|
31
33
|
|
data/lib/configuration.rb
CHANGED
@@ -5,5 +5,6 @@ module ConventionalCommits
|
|
5
5
|
DEFAULT_CONFIGURATION_PATH = ".conventional_commits/config.yml"
|
6
6
|
DEFAULT_COMMIT_MSG_PATH = ".git/COMMIT_EDITMSG"
|
7
7
|
DEFAULT_COMMIT_BODY_TEMPLATE = "[Describe your work, and put an empty string after]"
|
8
|
+
MAX_ELEMENTS_IN_PATTERN = 4
|
8
9
|
end
|
9
10
|
end
|
@@ -4,12 +4,14 @@ module ConventionalCommits
|
|
4
4
|
module Configuration
|
5
5
|
# Configuration for branch name policies
|
6
6
|
class BranchConfiguration
|
7
|
-
attr_reader :ticket_prefix, :lowercase, :pattern
|
7
|
+
attr_reader :ticket_prefix, :lowercase, :pattern, :ticket, :ticket_separator
|
8
8
|
|
9
9
|
def initialize(options = {})
|
10
10
|
@ticket_prefix = options["ticket_prefix"] || ""
|
11
|
+
@ticket = options["ticket"] || ""
|
12
|
+
@ticket_separator = options["ticket_separator"] || "-"
|
11
13
|
@lowercase = options["lowercase"] || true
|
12
|
-
@pattern = options["pattern"] || "<type>/<ticket>/<description>"
|
14
|
+
@pattern = options["pattern"] || "<scope>/<type>/<ticket>/<description>"
|
13
15
|
end
|
14
16
|
end
|
15
17
|
end
|
@@ -6,11 +6,16 @@ module ConventionalCommits
|
|
6
6
|
class BranchConfiguration
|
7
7
|
@lowercase: bool
|
8
8
|
@pattern: string
|
9
|
+
@ticket: string
|
9
10
|
@ticket_prefix: string
|
10
11
|
|
12
|
+
@ticket_separator: string
|
13
|
+
|
11
14
|
attr_reader pattern: bool
|
12
15
|
attr_reader lowercase: bool
|
16
|
+
attr_reader ticket: string
|
13
17
|
attr_reader ticket_prefix: string
|
18
|
+
attr_reader ticket_separator: string
|
14
19
|
end
|
15
20
|
end
|
16
21
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: conventional_commits
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swift-Gurus
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: open3
|