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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e6ae6b0c24851cd4187e486f651d0e4d9771976ff141916308d7af9ebdc04dcb
4
- data.tar.gz: 89e014f037a44a66af16de22d1ef343f98628e7872e79391fad3b342bc5b23f4
3
+ metadata.gz: 1cdfa634e8de20bca992561a53e037bb56b0e6cd26e710820c49f0191fb941d6
4
+ data.tar.gz: 2f6a979054978822a1a6575c0e01f00bff5a1a7b614aa3b88ebd760dcccffcd0
5
5
  SHA512:
6
- metadata.gz: 20c152762ded992258897e4f7d5a72ea9fa737aea6a47151f43d890f308bb2d193fca2b4bc57d3930b9ef74af04128cecc5fae770c03fe1afc6fe552cdc9574d
7
- data.tar.gz: 0eaa4b6db66729c636cd540ca7fdf98a411b0d99016d373556948586bffcb07be6fc7c378139e3e813a7a26c29a82df3cce91942f0e6f986133d3afccd926b92
6
+ metadata.gz: b92ddc49f4c7dad22d33c3b17b4a1a90ae168aee072e762e66650b5acb81e6b639030abd27bed2f4551a4947e91b10fb8473f491a0b73512d740377a4358b38d
7
+ data.tar.gz: fab82ec8dbd72ae32a40a6946f7dcd670dde1664548f0c160f2f003b40a782b8b57357d3322994cc8e0e8ce32c366a793cf61069e0182590861d90a2d6ce50b1
@@ -1,7 +1,7 @@
1
1
  branch:
2
2
  lowercase: true
3
3
  ticket_prefix: JIRA
4
- pattern: <type>/<ticket>/<description>
4
+ pattern: <scope>/<type>/<ticket>/<description>
5
5
  type:
6
6
  feat: [ feature, feat ]
7
7
  fix: [ bug, bugfix, fix ]
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- conventional_commits (0.1.1)
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.1.1)
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 + 1 > out.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(/<type>/, "<replace>")
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
- type = (components[0] || "").downcase
12
- ticket_number = components[1] || ""
13
- description = components[2] || ""
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: ##{configuration.ticket_prefix}#{ticket_number}".strip
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
- components = { type: "", title: "", body: "" }
28
- components[:type] = subject_components[0]
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ConventionalCommits
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
  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.0
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-22 00:00:00.000000000 Z
11
+ date: 2024-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: open3