rake_commit 1.3.0 → 1.4.0
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 +5 -5
- data/lib/rake_commit/commit.rb +1 -1
- metadata +7 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 54bdfe8aa4a8c59d242a4dc8ef8317ff5bee1eefaded07b25d6694354fb9ce67
|
|
4
|
+
data.tar.gz: bd560345992faa6d693deb74476a780b29f79a0afd256ade27ae7e90f38a7b34
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cd1b70eab91d9c90ec0c3fcb48ffc51d4bffbdcbaf4b89f233d98d05c01a65600d9b902519b87c5ba63ea56a855dcd825671338bcfbfaaf5260a6fbe64152bb
|
|
7
|
+
data.tar.gz: f5fe7431d86ec860d9de92399302ff96842024ecbe5e8a0e79eefbd555979ca05863be17431f257d47fcc938f5fcf8ad92fa579a4134ae60d85e54a391cd9ebf
|
data/lib/rake_commit/commit.rb
CHANGED
|
@@ -65,7 +65,7 @@ module RakeCommit
|
|
|
65
65
|
opts.on("-b", "--build-command SCRIPT", "the command that verifies the commit, defaults to rake") do |command|
|
|
66
66
|
options[:build_command] = command
|
|
67
67
|
end
|
|
68
|
-
opts.on("--word-wrap [80]", "word wrap the commit message (default no wrap)") do |commit_message_wrap|
|
|
68
|
+
opts.on("-l", "--word-wrap [80]", "word wrap the commit message (default no wrap)") do |commit_message_wrap|
|
|
69
69
|
options[:commit_message_wrap] = commit_message_wrap.to_i
|
|
70
70
|
end
|
|
71
71
|
opts.on("-m", "--message-type [MESSAGE|WHATWHY]", "the type of commit message to prompt for (only works on Git)") do |commit_message_type|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rake_commit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Paul Gross
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-03-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -16,20 +16,20 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 12.3.3
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '
|
|
22
|
+
version: '13'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version:
|
|
29
|
+
version: 12.3.3
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
32
|
+
version: '13'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: word_wrap
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -116,8 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
116
116
|
- !ruby/object:Gem::Version
|
|
117
117
|
version: '0'
|
|
118
118
|
requirements: []
|
|
119
|
-
|
|
120
|
-
rubygems_version: 2.4.5.1
|
|
119
|
+
rubygems_version: 3.0.3
|
|
121
120
|
signing_key:
|
|
122
121
|
specification_version: 4
|
|
123
122
|
summary: A gem which helps with checking in code
|