conventional_commits 0.2.7 → 0.2.9
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/lib/conventional_commits/version.rb +1 -1
- data/lib/conventional_commits.rb +5 -3
- metadata +2 -3
- data/conventional_commits.gemspec +0 -41
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e87cacf1c09afe40e4fe43339d1859d09030acdff7c15cd6ae4436fe3384350
|
4
|
+
data.tar.gz: f5a4d1109983c9d6631962d73636ed09f251e13157396d4902c18d50179b3fa0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c3fd3fd0c3da4855601741345f71b728cb90c2186e4f97c7ac052840a2cd64e6296cf6ad5713aee3052902217e59b7fdb1047d48597e391237fc834249a42eba
|
7
|
+
data.tar.gz: b77b5409ca8699b9886e2aefe200c5b8938962b11964a7ed0bc37aa888a47f8cebcaa8ac3368bda75c10409c1547ab6516c9fb26a633dfb97a8bbe31433931c3
|
data/Gemfile.lock
CHANGED
data/lib/conventional_commits.rb
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require_relative "conventional_commits/version"
|
4
|
-
|
5
|
-
module
|
4
|
+
require_relative "configuration"
|
5
|
+
module ConventionalCommits
|
6
6
|
class Error < StandardError; end
|
7
|
-
|
7
|
+
def self.get_branch_components(branch_name)
|
8
|
+
BranchNameGenerator.new.branch_name_components(branch_name)
|
9
|
+
end
|
8
10
|
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.
|
4
|
+
version: 0.2.9
|
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-
|
11
|
+
date: 2024-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: open3
|
@@ -108,7 +108,6 @@ files:
|
|
108
108
|
- Gemfile.lock
|
109
109
|
- README.md
|
110
110
|
- Rakefile
|
111
|
-
- conventional_commits.gemspec
|
112
111
|
- exe/conventional_commits
|
113
112
|
- lib/branch/branch_name_generator.rb
|
114
113
|
- lib/cli/branch_name_cli.rb
|
@@ -1,41 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require_relative "lib/conventional_commits/version"
|
4
|
-
|
5
|
-
Gem::Specification.new do |spec|
|
6
|
-
spec.name = "conventional_commits"
|
7
|
-
spec.version = ConventionalCommits::VERSION
|
8
|
-
spec.authors = "Swift-Gurus"
|
9
|
-
spec.email = "alexei.hmelevski@gmail.com"
|
10
|
-
|
11
|
-
spec.summary = "Make your commit unified."
|
12
|
-
spec.description = "Enforces conventional commits specs."
|
13
|
-
spec.homepage = "https://github.com/Swift-Gurus/conventional_commits"
|
14
|
-
spec.required_ruby_version = ">= 3.1"
|
15
|
-
|
16
|
-
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
17
|
-
|
18
|
-
spec.metadata["homepage_uri"] = spec.homepage
|
19
|
-
spec.metadata["source_code_uri"] = "https://github.com/Swift-Gurus/conventional_commits"
|
20
|
-
spec.metadata["changelog_uri"] = "https://github.com/Swift-Gurus/conventional_commits"
|
21
|
-
|
22
|
-
# Specify which files should be added to the gem when it is released.
|
23
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
24
|
-
spec.files = Dir.chdir(__dir__) do
|
25
|
-
`git ls-files -z`.split("\x0").reject do |f|
|
26
|
-
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
|
27
|
-
end
|
28
|
-
end
|
29
|
-
spec.bindir = "exe"
|
30
|
-
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
31
|
-
spec.require_paths = ["lib"]
|
32
|
-
|
33
|
-
# Uncomment to register a new dependency of your gem
|
34
|
-
spec.add_dependency "open3"
|
35
|
-
spec.add_dependency "thor"
|
36
|
-
spec.add_dependency "yaml"
|
37
|
-
|
38
|
-
spec.add_development_dependency "aruba"
|
39
|
-
spec.add_development_dependency "cucumber"
|
40
|
-
spec.add_development_dependency "simplecov"
|
41
|
-
end
|