conventional_commits 0.2.0 → 0.2.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/.conventional_commits/config.yml +1 -1
- data/Gemfile.lock +2 -2
- data/conventional_commits.gemspec +1 -1
- 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 +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e94ddfbbf30fd22858780223ccc4251e6b6aeeef1935e0bff4f792686b973423
|
4
|
+
data.tar.gz: f1c41daf369141f2af48e6d022661e00177a645a9797cb176693433c4d4579c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e711c88f885c94c5e920d89f9f6c3d97c3faa35b21df2af332a5016623aa4df2759d5ad73d1456452262f3005489f8ba0bbb2813f36a743c623e95630581cc4d
|
7
|
+
data.tar.gz: 6a314e124e6a37b296624fcceda4b3b0a4a0a72e729018535fcf7fa8752e7ab148aba23cd9771f6f8156820c37a96efc02b83bfbcf34da04caad9be970c459d3
|
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.1)
|
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)
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.summary = "Make your commit unified."
|
12
12
|
spec.description = "Enforces conventional commits specs."
|
13
13
|
spec.homepage = "https://github.com/Swift-Gurus/conventional_commits"
|
14
|
-
spec.required_ruby_version = ">= 3.1
|
14
|
+
spec.required_ruby_version = ">= 3.1"
|
15
15
|
|
16
16
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
17
17
|
|
@@ -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.2
|
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
|
@@ -162,7 +162,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
162
162
|
requirements:
|
163
163
|
- - ">="
|
164
164
|
- !ruby/object:Gem::Version
|
165
|
-
version: 3.1
|
165
|
+
version: '3.1'
|
166
166
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
167
167
|
requirements:
|
168
168
|
- - ">="
|