conventional_commits 0.1.1 → 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: 4b3eceb0496efd81eb85133073c36d40a4c8ba362b973f03c32ce674e0e09f0b
4
- data.tar.gz: 9fcb57b5b6174c4e826db6610ef41eb5e900cc1f45ada3dcd134e2926a6cc1e3
3
+ metadata.gz: 1cdfa634e8de20bca992561a53e037bb56b0e6cd26e710820c49f0191fb941d6
4
+ data.tar.gz: 2f6a979054978822a1a6575c0e01f00bff5a1a7b614aa3b88ebd760dcccffcd0
5
5
  SHA512:
6
- metadata.gz: bbfd3843abc300c550200b8254492c011272ed960e3a17e1b11bffc89a7c606481b430a6bc65bbccd1be8498cfe94834056bba693900538772f9803443500f49
7
- data.tar.gz: 8cdb7380b8757ee3dd0b194c9a3d481b1553f73950458be17e680cd61c183b4af9748156b126ada250c5e3fe50a02416a3a630f049cb5d8158422ab29ef5edf4
6
+ metadata.gz: b92ddc49f4c7dad22d33c3b17b4a1a90ae168aee072e762e66650b5acb81e6b639030abd27bed2f4551a4947e91b10fb8473f491a0b73512d740377a4358b38d
7
+ data.tar.gz: fab82ec8dbd72ae32a40a6946f7dcd670dde1664548f0c160f2f003b40a782b8b57357d3322994cc8e0e8ce32c366a793cf61069e0182590861d90a2d6ce50b1
@@ -0,0 +1,23 @@
1
+ branch:
2
+ lowercase: true
3
+ ticket_prefix: JIRA
4
+ pattern: <scope>/<type>/<ticket>/<description>
5
+ type:
6
+ feat: [ feature, feat ]
7
+ fix: [ bug, bugfix, fix ]
8
+ ci: [ ci ]
9
+ refactor: [ ref, refactor, refactoring ]
10
+ doc: [ doc, doc, documentation ]
11
+ release:
12
+ rules:
13
+ - types:
14
+ - ref
15
+ - fix
16
+ version: patch
17
+ - types:
18
+ - feature
19
+ version: patch
20
+ - type: breaking
21
+ version: major
22
+
23
+
data/Gemfile CHANGED
@@ -5,8 +5,8 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in conventional_commits.gemspec
6
6
  gemspec
7
7
 
8
+ gem "gem-release"
8
9
  gem "rake", "~> 13.0"
9
10
  gem "rspec", "~> 3.0"
10
11
  gem "rubocop", "~> 1.21"
11
12
  gem "simplecov"
12
-
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
@@ -47,11 +47,12 @@ GEM
47
47
  diff-lcs (1.5.1)
48
48
  docile (1.4.0)
49
49
  ffi (1.16.3)
50
+ gem-release (2.2.2)
50
51
  json (2.7.1)
51
52
  language_server-protocol (3.17.0.3)
52
53
  mini_mime (1.1.5)
53
54
  multi_test (1.1.0)
54
- open3 (0.1.1)
55
+ open3 (0.2.1)
55
56
  parallel (1.24.0)
56
57
  parser (3.3.0.5)
57
58
  ast (~> 2.4.1)
@@ -107,6 +108,7 @@ DEPENDENCIES
107
108
  aruba
108
109
  conventional_commits!
109
110
  cucumber
111
+ gem-release
110
112
  rake (~> 13.0)
111
113
  rspec (~> 3.0)
112
114
  rubocop (~> 1.21)
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # ConventionalCommits
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/conventional_commits`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ This gem contains several tools to help enforce conventional commits practices.
4
+ It contains CLI as well as Modules that you can you for your own use cases.
4
5
 
5
- TODO: Delete this and the text above, and describe your gem
6
6
 
7
7
  ## Installation
8
8
 
@@ -16,7 +16,48 @@ If bundler is not being used to manage dependencies, install the gem by executin
16
16
 
17
17
  ## Usage
18
18
 
19
- TODO: Write usage instructions here
19
+ Be mindful that this gem is mostly made for a specific set of practices. The idea is a team is agreed on specific branch name practices. This will help automating commits and templates thus helping developer to avoid redundant work.
20
+
21
+ For easy start you can create a file `.conventional_commits/config.yml` with the next structure
22
+ run hooks installer by calling:
23
+
24
+ $ conventional_commits install_hooks
25
+
26
+ ```yaml
27
+ branch:
28
+ lowercase: true
29
+ ticket_prefix: JIRA
30
+ pattern: <type>/<ticket>/<description>
31
+ type:
32
+ feat: [ feature, feat ]
33
+ fix: [ bug, bugfix, fix ]
34
+ ci: [ ci ]
35
+ refactor: [ ref, refactor, refactoring ]
36
+ doc: [ doc, doc, documentation ]
37
+ release:
38
+ rules:
39
+ - types:
40
+ - ref
41
+ - fix
42
+ version: patch
43
+ - types:
44
+ - feature
45
+ version: patch
46
+ - type: breaking
47
+ version: major
48
+
49
+ ```
50
+
51
+ ### Options
52
+ - `lowercase` - will make sure that the branch name is in lowercase when cli `conventional_commit branch <NAME>` is called
53
+ to create a new branch
54
+ - `ticket_prefix` - is used to append prefix to the commit message at the footer
55
+ - `pattern` - is used to define the separators between in future it will be used to define the order as well
56
+ - `type` - is used for mapping combination of short names for the type of request. Helps to avoid inconsistency.
57
+
58
+ ### Release
59
+ Not implemented yet. It will contain tools to increment version number based on the rules
60
+
20
61
 
21
62
  ## Development
22
63
 
@@ -26,4 +67,4 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
26
67
 
27
68
  ## Contributing
28
69
 
29
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/conventional_commits.
70
+ Bug reports and pull requests are welcome on GitHub at https://github.com/Swift-Gurus/conventional_commits.
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "cli/branch_name_cli"
4
+ require "branch/branch_name_generator"
5
+ require "configuration/branch_configuration_reader"
6
+ require "configuration/main_configuration_reader"
7
+ require "models/main_configuration"
8
+ require "models/release_configuration"
9
+ require "models/release_rule"
10
+ require "models/branch_configuration"
11
+ require "configuration"
12
+ require "models/type_configuration"
13
+ require "commit/commit_message_generator"
14
+ require "git/git"
15
+ require "conventional_commits"
16
+ require "helpers/file_extension"
17
+ require "commit/commit_message_parser"
18
+ require "commit/commit_message_validator"
19
+ require "hooks/hooks_installer"
20
+ ConventionalCommits::BranchNameCLI.start(ARGV)
@@ -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.1.1"
4
+ VERSION = "0.2.1"
5
5
  end
@@ -54,7 +54,7 @@ module ConventionalCommits
54
54
  end
55
55
 
56
56
  def cli_command(cmd)
57
- "bundle exec conventional_commit #{cmd}"
57
+ "bundle exec conventional_commits #{cmd}"
58
58
  end
59
59
 
60
60
  def ruby_eval
@@ -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.1.1
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-21 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
@@ -96,10 +96,12 @@ dependencies:
96
96
  version: '0'
97
97
  description: Enforces conventional commits specs.
98
98
  email: alexei.hmelevski@gmail.com
99
- executables: []
99
+ executables:
100
+ - conventional_commits
100
101
  extensions: []
101
102
  extra_rdoc_files: []
102
103
  files:
104
+ - ".conventional_commits/config.yml"
103
105
  - ".rspec"
104
106
  - ".rubocop.yml"
105
107
  - Gemfile
@@ -107,6 +109,7 @@ files:
107
109
  - README.md
108
110
  - Rakefile
109
111
  - conventional_commits.gemspec
112
+ - exe/conventional_commits
110
113
  - lib/branch/branch_name_generator.rb
111
114
  - lib/cli/branch_name_cli.rb
112
115
  - lib/commit/commit_message_generator.rb