conventional_commits 0.2.11 → 0.2.12
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9ab16f4e19f81fb99361b17dbf88ee8bd4a0f79c0f33eaf0753a719f0cc631a
|
4
|
+
data.tar.gz: 23164a3fb0e438c505dc57585da73891adf545ac6e5022bd8fc5a16b2a537621
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 368e3c84ae495829a836b6e29ee2d33a2a126bb8983f71253025b3018ebc35e5b2518b3531eb07526a582a9b89824465f44f94c5fa99f5eb5b933d05dcb88151
|
7
|
+
data.tar.gz: 0e8a2f533808468507d6a3fead67129b972f2d90ef416fc4cbbd2bd31fac57a5ed78cfdd7ed46ce80f73208c7f66b9a4a247cbc1d16927431d8ce23eb71b62bf
|
@@ -6,7 +6,7 @@ module ConventionalCommits
|
|
6
6
|
class MainConfigurationReader
|
7
7
|
def get_configuration(path: Configuration::DEFAULT_CONFIGURATION_PATH)
|
8
8
|
raise GenericError, "Path is empty" if path.empty?
|
9
|
-
raise GenericError, "File not found" unless File.exist?(path)
|
9
|
+
raise GenericError, "File not found at #{path}" unless File.exist?(path)
|
10
10
|
|
11
11
|
file = File.open(path)
|
12
12
|
config = YAML.load(file)
|
data/lib/conventional_commits.rb
CHANGED
@@ -1,10 +1,19 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require_relative "conventional_commits/version"
|
4
|
+
require_relative "configuration/branch_configuration_reader"
|
4
5
|
require_relative "branch/branch_name_generator"
|
6
|
+
require_relative "configuration"
|
7
|
+
require_relative "configuration/main_configuration_reader"
|
8
|
+
require_relative "models/main_configuration"
|
9
|
+
require_relative "models/release_configuration"
|
10
|
+
require_relative "models/release_rule"
|
11
|
+
require_relative "models/branch_configuration"
|
12
|
+
require_relative "models/type_configuration"
|
13
|
+
require_relative "models/commit_configuration"
|
5
14
|
module ConventionalCommits
|
6
15
|
class Error < StandardError; end
|
7
16
|
def self.get_branch_components(branch_name)
|
8
|
-
|
17
|
+
BranchNameGenerator.new.branch_name_components(branch_name)
|
9
18
|
end
|
10
19
|
end
|