conventional_commits 0.2.7 → 0.2.8

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: 0e0c30235e345a6224bdff22ec8624f93609069208cecbb8a37423e502fc7e07
4
- data.tar.gz: 920cd751c076e80e05e35be2c61ccf8019e00ec23be87a1bb3a73d9451fb45e6
3
+ metadata.gz: 281c8c2db424ebd20bc53ff867c31814826bba9adf313808e6dc1024c2fcec02
4
+ data.tar.gz: 86f0db1f231e9a498ba2f6f4d6f923981ece66cef88db1acbc3022af2bff69dd
5
5
  SHA512:
6
- metadata.gz: 33bbca653a41c902318db519625930deef5f5e87be84f695c81b335dd53040da9b7cce771833be391e7a242b69db4e101dce82640b3f8d4c9217c8ca46374208
7
- data.tar.gz: 51551e59749b5c9db999ff8eaf9d99012a2aada1551cfff6ac4dc0eaa843f1e19937bd0567e6fa7a3cffb5db659ed2100b054b6c59ab355c666b7acb5088cc33
6
+ metadata.gz: 80fb474a6aea4b5ba69e4e8b6871cb03fbe15147093e0752f67658babfefe4fdab9fae11693a1e6a25a19a40d3c006b49a12c8d96a115d3a6d4a98f864fea9b4
7
+ data.tar.gz: e75385ac234ad58d053940e76a3a4debe34025805170fdf84805ff6f7aad388efb11040cc0b52a8c1daf7e73e957c6040d47cc5ddf93de4fb5c55b42b59f505d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- conventional_commits (0.2.6)
4
+ conventional_commits (0.2.7)
5
5
  open3
6
6
  thor
7
7
  yaml
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ConventionalCommits
4
- VERSION = "0.2.7"
4
+ VERSION = "0.2.8"
5
5
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  require_relative "conventional_commits/version"
4
4
 
5
- module Conventional§Commits
5
+ module ConventionalCommits
6
6
  class Error < StandardError; end
7
7
  # Your code goes here...
8
8
  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.7
4
+ version: 0.2.8
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-04-11 00:00:00.000000000 Z
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