conventional_commits 0.2.1 → 0.2.3
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/Gemfile.lock +1 -1
- data/conventional_commits.gemspec +1 -1
- data/lib/commit/commit_message_generator.rb +2 -2
- data/lib/conventional_commits/version.rb +1 -1
- 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: a9a0d14518b031a2cbea0e1ce7202c57ed0657ef6df3897b7c1181da35394aae
|
4
|
+
data.tar.gz: 410cefd3c1402db7398234797d91e88562cd213c780fec227c9e54ec87e9c6eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a98bddcfe7c504ec5313f8a705a19e393084aaae9cb5e58044c0eafdd19d15798b9ab6c08292375f46e6451968aa147b1431246c3e2d63596c3b3a357fd568fe
|
7
|
+
data.tar.gz: effcf68505e614b8fe07ced8d1a7a27200664ecb41cefda4b79f500300a694fd49e2837f7e65d6b52605d1d4ec5e7ccb5822e26849fafcf2782616cca71c2d13
|
data/Gemfile.lock
CHANGED
@@ -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
|
|
@@ -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]
|
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)}
|
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
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Swift-Gurus
|
@@ -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
|
- - ">="
|