github_repo_statistics 2.3.25 → 2.3.26
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f8c3548a534e695bf0efb8b5c98174e9870aca05d25478cddca5966f0175196
|
4
|
+
data.tar.gz: 84f0352e6758ff773abbe324d4ba44520e240ec088dab145acefb95f06a84912
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 97136d14c94e4fb682a59d7c33bd0751762ee2056b45e530b34d72b5bfe841b68bf375f645f157f6006b105996e8beb7acb50b1ee39a6aa18f000544ce18b983
|
7
|
+
data.tar.gz: 63e254d07d1a7b0ca7ee6762a4980ea4b11819a09e4b3eaff37f652b28954e3b851c0fae573780aadc802ff08342a23503c66b36317a6445238870197f4f04e0
|
@@ -217,8 +217,8 @@ class GithubRepoStatistics
|
|
217
217
|
end
|
218
218
|
|
219
219
|
if EXCLUDED_CONTRIBUTOR_NAMES
|
220
|
-
|
221
|
-
git_log = git_log.reject { |c|
|
220
|
+
excluded_contributor_names = EXCLUDED_CONTRIBUTOR_NAMES.split(',')
|
221
|
+
git_log = git_log.reject { |c| excluded_contributor_names.any? { |cr| c.include?(cr) } }
|
222
222
|
end
|
223
223
|
|
224
224
|
|