github_repo_statistics 2.2.20 → 2.2.21

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: 41a049be21c83dce57e60dc938dff6824d47a007a98a28292667ce56118450bc
4
- data.tar.gz: a78b853dd82721c83dd10fe17db33f199f084143264c8f0fe991a252b645d7f3
3
+ metadata.gz: 22715ee89ab9a04e544646b19dd848c758661fd16583844d71a11dbe44428b5f
4
+ data.tar.gz: 52f34b4a141f1408f50c1615d55785e28d7a6ce1052d7e18ff714a9d108bc570
5
5
  SHA512:
6
- metadata.gz: 7296fd692ec8d1fca369a8b4eef1ef7839b1c5ba6ec1f924d7eca834df8ab01eb590223314669006c9bf00b55e99c35f2d7089bd70900108ab1a0f2c91de22b9
7
- data.tar.gz: 5066e055e2ba835d681df98e3cf7e988c48c96480541c418e28ff97f6b7bea7a7194e873f6e8dd69da36e20244b8f5b54abdb724f909774edd8f574bf9feb704
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:)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class GithubRepoStatistics
4
- VERSION = '2.2.20'
4
+ VERSION = '2.2.21'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_repo_statistics
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.20
4
+ version: 2.2.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Serghei Moret