conventional_commits 0.2.2 → 0.2.4

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: e94ddfbbf30fd22858780223ccc4251e6b6aeeef1935e0bff4f792686b973423
4
- data.tar.gz: f1c41daf369141f2af48e6d022661e00177a645a9797cb176693433c4d4579c0
3
+ metadata.gz: f435dcc6d50497ef6fa5851415569724110d6de0d717237e2aff3ad9f481761b
4
+ data.tar.gz: 5a0515fd06a107fd2f89c03663ac2365d0045f23545b1790a25874e51d33e337
5
5
  SHA512:
6
- metadata.gz: e711c88f885c94c5e920d89f9f6c3d97c3faa35b21df2af332a5016623aa4df2759d5ad73d1456452262f3005489f8ba0bbb2813f36a743c623e95630581cc4d
7
- data.tar.gz: 6a314e124e6a37b296624fcceda4b3b0a4a0a72e729018535fcf7fa8752e7ab148aba23cd9771f6f8156820c37a96efc02b83bfbcf34da04caad9be970c459d3
6
+ metadata.gz: 5c9fbebbcb8a9ef25c720a8ab3cb25545f179d70058fa61f2e939461d31a946f7e9bff88c733762e7f7daaf83982a445a9d7c76cf8cfa875145135ad561d7c26
7
+ data.tar.gz: fb2fff5c46bdbfc23ad2bf20e0245a08192b696d6be5c0e7e76ed3c247c1e27e7bf2815a3e14dc6285dfa9660416e86819a9ff208e087df5d3c859bbb7e09c8a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- conventional_commits (0.2.1)
4
+ conventional_commits (0.2.4)
5
5
  open3
6
6
  thor
7
7
  yaml
@@ -22,20 +22,7 @@ module ConventionalCommits
22
22
 
23
23
  def branch_name_components(_input, path: Configuration::DEFAULT_CONFIGURATION_PATH)
24
24
  configuration = reader.get_configuration(path:)
25
- delimiters = find_delimiters_from_pattern(pattern: configuration.pattern)
26
- received = _input
27
- modified_input = _input
28
- out = []
29
- delimiters.each do |d|
30
- splits = modified_input.split(d, 2)
31
- out.push(splits[0]) if splits.length.positive?
32
- modified_input = splits[1] || ""
33
- end
34
- out.push(modified_input) unless modified_input.empty?
35
- if delimiters.length > out.length
36
- raise ConventionalCommits::GenericError,
37
- "The branch doesnt respect the template, expect #{delimiters.length} delimiters. Received: #{received}".strip
38
- end
25
+ out = components_using(_input, configuration.pattern)
39
26
 
40
27
  scope_is_included = out.length == Configuration::MAX_ELEMENTS_IN_PATTERN
41
28
  idx_adj = scope_is_included ? 1 : 0
@@ -65,6 +52,32 @@ module ConventionalCommits
65
52
  delimiters
66
53
  end
67
54
 
55
+ def components_using(input, pattern)
56
+ delimiters = find_delimiters_from_pattern(pattern:)
57
+ out = split_name_using_delimiters(delimiters, input)
58
+ if delimiters.length > out.length && pattern.include?("<scope>")
59
+ components_using(input, pattern.gsub(%r{<scope>/}, ""))
60
+ elsif delimiters.length > out.length
61
+ raise ConventionalCommits::GenericError,
62
+ "The branch doesnt respect the template, expect at least #{delimiters.length} delimiters. Received: #{out}".strip
63
+ end
64
+
65
+ out
66
+ end
67
+
68
+ def split_name_using_delimiters(delimiters, input)
69
+ received = input
70
+ modified_input = input
71
+ out = []
72
+ delimiters.each do |d|
73
+ splits = modified_input.split(d, 2)
74
+ out.push(splits[0]) if splits.length.positive?
75
+ modified_input = splits[1] || ""
76
+ end
77
+ out.push(modified_input) unless modified_input.empty?
78
+ out
79
+ end
80
+
68
81
  def transform_input_using_delimiters(_input, delimiters)
69
82
  splits = _input.gsub(/_/, " ").scan(/\w+/)
70
83
  validate_delimiters(delimiters, splits.length)
@@ -8,7 +8,7 @@ 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
- scope = (components[:scope] || "").downcase
11
+ scope = components[:scope] ? "(#{components[:scope].downcase})" : ""
12
12
  type = (components[:type] || "").downcase
13
13
  ticket_number = components[:ticket_number] || ""
14
14
  description = components[:description] || ""
@@ -19,7 +19,7 @@ module ConventionalCommits
19
19
  "The type #{type} is not allowed. Allowed types #{main_config.type.all_types}"
20
20
  end
21
21
 
22
- type = "#{main_config.type.main_type(type)}(#{scope}): #{description}".strip
22
+ type = "#{main_config.type.main_type(type)}#{scope}: #{description}".strip
23
23
 
24
24
  ticket_ref = "#{configuration.ticket_prefix}#{configuration.ticket}#{configuration.ticket_separator}#{ticket_number}"
25
25
  body = custom_body.strip.empty? ? Configuration::DEFAULT_COMMIT_BODY_TEMPLATE : custom_body.strip
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ConventionalCommits
4
- VERSION = "0.2.2"
4
+ VERSION = "0.2.4"
5
5
  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.2
4
+ version: 0.2.4
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-25 00:00:00.000000000 Z
11
+ date: 2024-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: open3
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
169
  - !ruby/object:Gem::Version
170
170
  version: '0'
171
171
  requirements: []
172
- rubygems_version: 3.3.7
172
+ rubygems_version: 3.4.10
173
173
  signing_key:
174
174
  specification_version: 4
175
175
  summary: Make your commit unified.