github_repo_statistics 2.2.20 → 2.2.21
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: 22715ee89ab9a04e544646b19dd848c758661fd16583844d71a11dbe44428b5f
|
4
|
+
data.tar.gz: 52f34b4a141f1408f50c1615d55785e28d7a6ce1052d7e18ff714a9d108bc570
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbc8035a098fc62d186f2c4db8345d334f137f7df0e7d3ef660ae42e506d4930df8f22d1eea36894041b058f49718fb9139cec3ba73d72184e9371696fa2352f
|
7
|
+
data.tar.gz: ded920b5c06400ed83b02b5da34a61663398e76214c86c74e7713bd49cd249eb6eb9d7f1446af6127c9e7465520f68e6d1a4257475abbe8cd7ad5be2b555340c
|
@@ -179,7 +179,9 @@ class GithubRepoStatistics
|
|
179
179
|
|
180
180
|
def git_commit_info(file:, start_date:, end_date:)
|
181
181
|
puts "File: #{file}, Start: #{start_date}, End: #{end_date}, Now: #{Time.now}" if @debug
|
182
|
-
`git log --pretty=format:"%s" --since="#{start_date}" --until="#{end_date}" --follow -- "#{file}"`
|
182
|
+
res = `git log --pretty=format:"%s" --since="#{start_date}" --until="#{end_date}" --follow -- "#{file}"`
|
183
|
+
puts res if @debug
|
184
|
+
res
|
183
185
|
end
|
184
186
|
|
185
187
|
def analyze_changed_files(uniq_code_files_with_changes:, start_date:, end_date:)
|