github_repo_statistics 2.3.10 → 2.3.11
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/Gemfile.lock +1 -1
- data/bin/github_repo_statistics +4 -0
- data/lib/github_repo_statistics/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 457f849fab6ab424a4079de9c938b8af018be4fa5f8cb36d7db8a5b778b65781
|
4
|
+
data.tar.gz: 3980125eac8f50a329e55a168d1fab47010ce0f4359afb7900b2cae7d92fb577
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 538eb468eeb7248876094bbfb1335cf6b0aeeca89a1119e4e1e8339d8171e70f3605510e91c866a27a90beaa3cd11c2e3979613f7eb9bb40f13408faa39c62a9
|
7
|
+
data.tar.gz: a9a1cb832f47d651049e6bb84dabd0758a283be329a4d0e713c4833104014edab051e62322d6858ee0f32f3bbb12253756bd9edb0bace209fe1b4ab43b219cc9
|
data/Gemfile.lock
CHANGED
data/bin/github_repo_statistics
CHANGED
@@ -158,9 +158,13 @@ if options[:hotspot_check]
|
|
158
158
|
puts "Feature branch: #{feature_branch}"
|
159
159
|
changed_files = `git diff --name-only master...#{feature_branch} | grep #{REPO_PATH} | grep '\.swift'`.split
|
160
160
|
puts "Changed files: #{changed_files}"
|
161
|
+
return if changed_files.empty?
|
162
|
+
|
161
163
|
branch_hotspot_files = GithubRepoStatistics.new(duration_in_days: options[:duration_in_days] || 30, directory_path: REPO_PATH,
|
162
164
|
begin_time: DateTime.now, steps: options[:steps].to_i, debug: options[:debug]).hotspot_check(files: changed_files, branch: feature_branch)
|
163
165
|
puts "branch_hotspot_files = #{branch_hotspot_files}"
|
166
|
+
return if branch_hotspot_files.empty?
|
167
|
+
|
164
168
|
system("git checkout #{DEFAULT_BRANCH}", [:out] => File::NULL)
|
165
169
|
master_hotspot_files = GithubRepoStatistics.new(duration_in_days: options[:duration_in_days] || 30, directory_path: REPO_PATH,
|
166
170
|
begin_time: DateTime.now, steps: options[:steps].to_i, debug: options[:debug]).hotspot_check(files: branch_hotspot_files, branch: DEFAULT_BRANCH)
|