conventional_commits 0.1.0 → 0.1.1

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: 773e8500d2a910d271e21c329b6b2341c93929e86b6a35310abe967bb9a701e8
4
- data.tar.gz: 34910f2e6067b60c823a2e4f8f1aa6ce6d44472ac47d65ce63de5d22c6119f1a
3
+ metadata.gz: 4b3eceb0496efd81eb85133073c36d40a4c8ba362b973f03c32ce674e0e09f0b
4
+ data.tar.gz: 9fcb57b5b6174c4e826db6610ef41eb5e900cc1f45ada3dcd134e2926a6cc1e3
5
5
  SHA512:
6
- metadata.gz: d5af3444a122c72e7946064d490393ff4ed774acc8f6e6e8d22adac7852bebabc173fd98da25c0790826a63d156048b6ab93dd36fcce2f5dc2ea1227c849438a
7
- data.tar.gz: 291379e49c6ac188ec384987b92a43dbaae811694304b0ac92e9c4994390b5cf452a477fc8e30f46a5d6eb1210550271f06682a71352360eeb1ff10f3dfc14e2
6
+ metadata.gz: bbfd3843abc300c550200b8254492c011272ed960e3a17e1b11bffc89a7c606481b430a6bc65bbccd1be8498cfe94834056bba693900538772f9803443500f49
7
+ data.tar.gz: 8cdb7380b8757ee3dd0b194c9a3d481b1553f73950458be17e680cd61c183b4af9748156b126ada250c5e3fe50a02416a3a630f049cb5d8158422ab29ef5edf4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- conventional_commits (0.1.0)
4
+ conventional_commits (0.1.1)
5
5
  open3
6
6
  thor
7
7
  yaml
data/lib/configuration.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  module ConventionalCommits
4
4
  module Configuration
5
- DEFAULT_CONFIGURATION_PATH = ".conventional_commit/config.yaml"
5
+ DEFAULT_CONFIGURATION_PATH = ".conventional_commits/config.yml"
6
6
  DEFAULT_COMMIT_MSG_PATH = ".git/COMMIT_EDITMSG"
7
7
  DEFAULT_COMMIT_BODY_TEMPLATE = "[Describe your work, and put an empty string after]"
8
8
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ConventionalCommits
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
@@ -54,7 +54,7 @@ module ConventionalCommits
54
54
  end
55
55
 
56
56
  def cli_command(cmd)
57
- "bundle exec bin/conventional_commit #{cmd}"
57
+ "bundle exec conventional_commit #{cmd}"
58
58
  end
59
59
 
60
60
  def ruby_eval
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.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swift-Gurus