github_repo_statistics 2.3.10 → 2.3.12

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: 7c221dd45188c7427ef07040ed9d69a208ef7f3100f2e8a8b4e4c686ca608603
4
- data.tar.gz: e179325e508dfd11feffcced476f17b989e323fda894d6d83054e8edb3915b1b
3
+ metadata.gz: aed29c0811014b2d94b683a8202e3eb8ae65d5c9cbc214ba4893fb382ee57518
4
+ data.tar.gz: c8c99f66bb6da70450a5790c3708c9bc9d9194c89854721c04624d2e12b854c0
5
5
  SHA512:
6
- metadata.gz: 5a00ebdd94689c5e8fafc490165cbd1f71b19f07ea2e1577f571fd8af838e14eb3f2bb4ca6c61c6bc306644abc7f26f0fef421383ec31cc6e5f538bcb689cc72
7
- data.tar.gz: 1070bf3071ed94ac590e7cfa40866b0cead2a2d3c5a5950fe476b9c6d081344d443c11f23d6ac0d80befd5ea200a7fe2d5cf65203f4366c41c72068397deacb3
6
+ metadata.gz: 5df331cb305e3c001fee8bdf21cce123d776043e87e4073832969ea13549be03d9a06190927f706746f19114a886bb3a15379eb355086cbebce96a451d38a199
7
+ data.tar.gz: f6b088dda74132a8f9d8bc7467604f6a7769da6cd4e3d72f062066660f1e595092322579fad6dc38b70d05f5c2fa874a6f9fd0afb6573af7b82a28c59d96b72e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- github_repo_statistics (2.3.10)
4
+ github_repo_statistics (2.3.11)
5
5
  date
6
6
  faraday-retry
7
7
  google-cloud-bigquery
@@ -156,11 +156,15 @@ end
156
156
  if options[:hotspot_check]
157
157
  feature_branch = `git rev-parse --abbrev-ref HEAD`.chomp
158
158
  puts "Feature branch: #{feature_branch}"
159
- changed_files = `git diff --name-only master...#{feature_branch} | grep #{REPO_PATH} | grep '\.swift'`.split
159
+ changed_files = `git diff --name-only master...origin/#{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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class GithubRepoStatistics
4
- VERSION = '2.3.10'
4
+ VERSION = '2.3.12'
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.3.10
4
+ version: 2.3.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Serghei Moret