conventional_commits 0.2.2 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e94ddfbbf30fd22858780223ccc4251e6b6aeeef1935e0bff4f792686b973423
4
- data.tar.gz: f1c41daf369141f2af48e6d022661e00177a645a9797cb176693433c4d4579c0
3
+ metadata.gz: a9a0d14518b031a2cbea0e1ce7202c57ed0657ef6df3897b7c1181da35394aae
4
+ data.tar.gz: 410cefd3c1402db7398234797d91e88562cd213c780fec227c9e54ec87e9c6eb
5
5
  SHA512:
6
- metadata.gz: e711c88f885c94c5e920d89f9f6c3d97c3faa35b21df2af332a5016623aa4df2759d5ad73d1456452262f3005489f8ba0bbb2813f36a743c623e95630581cc4d
7
- data.tar.gz: 6a314e124e6a37b296624fcceda4b3b0a4a0a72e729018535fcf7fa8752e7ab148aba23cd9771f6f8156820c37a96efc02b83bfbcf34da04caad9be970c459d3
6
+ metadata.gz: a98bddcfe7c504ec5313f8a705a19e393084aaae9cb5e58044c0eafdd19d15798b9ab6c08292375f46e6451968aa147b1431246c3e2d63596c3b3a357fd568fe
7
+ data.tar.gz: effcf68505e614b8fe07ced8d1a7a27200664ecb41cefda4b79f500300a694fd49e2837f7e65d6b52605d1d4ec5e7ccb5822e26849fafcf2782616cca71c2d13
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.2)
5
5
  open3
6
6
  thor
7
7
  yaml
@@ -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.3"
5
5
  end
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.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swift-Gurus