committer-tools 0.1.9 → 0.2.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 +4 -4
- data/README.md +5 -2
- data/committer-tools.gemspec +1 -1
- data/lib/committer-tools.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 776b584bea584ea766f4b59d117916810def62fd
|
|
4
|
+
data.tar.gz: ef40a808d75c168993dffcc29e22171d954ee0c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f1f9fa922987d90dc732b613cb3ebcb71388e59040f4610e2bed3991f49bbbefdf8679afcf992b1145122e218a201ea5abb582aad63fbee84f44b89940d2a6a3
|
|
7
|
+
data.tar.gz: 0c1dd65a4beac14ab8d626cb2540969cf6ff2cc2f7dc597f4f192f87ae71cd172bb536e7ee18bb61a940456d57ced227918ccf59069ebac9c016c23264dbaefb
|
data/README.md
CHANGED
|
@@ -34,10 +34,13 @@ in your home directory, with the following contents:
|
|
|
34
34
|
- What this does not automates:
|
|
35
35
|
- pushing the actual commit
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
Make sure you have a PR ID ready; as an example, the ID for
|
|
38
|
+
`https://github.com/nodejs/node#14998` would be `nodejs/node#14998`.
|
|
39
|
+
|
|
40
|
+
Once you have a PR ready to land, you can then land it by running:
|
|
38
41
|
|
|
39
42
|
```
|
|
40
|
-
|
|
43
|
+
committer-tools land
|
|
41
44
|
```
|
|
42
45
|
|
|
43
46
|
### License
|
data/committer-tools.gemspec
CHANGED
data/lib/committer-tools.rb
CHANGED
|
@@ -116,7 +116,7 @@ class MetadataCollector
|
|
|
116
116
|
|
|
117
117
|
# GitHub being stupid...
|
|
118
118
|
# Treat every two lines as one...
|
|
119
|
-
readme.split("\n").each_slice(2).to_a.each do |a, b|
|
|
119
|
+
readme.split("\n").unshift('').each_slice(2).to_a.each do |a, b|
|
|
120
120
|
if (m = REVIEWER_REGEX.match("#{a} #{b}"))
|
|
121
121
|
possible_reviewers[m[1]] = {
|
|
122
122
|
name: m[2],
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: committer-tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jon Moss
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-01-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|