git_ownership_insights 0.1.3 → 0.1.4
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/git_ownership_insights +1 -1
- data/lib/git_ownership_insights/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: f2cc151f3f515c7ec241175034e18e611a1eedc4df8c322c383e15390f483c96
|
|
4
|
+
data.tar.gz: 59774d973a6d0aa982f0a8bf426939c0c59caeaa9305c624f19e6cd42b7e92c8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f146f73f54759ea4e568961158c5b8f938e0f471d0fbc7cfdc84faf6b7597a3352d073e60b8417c672f1dc161c09b0d3dc0282e9e1a459daf7104a6b4bf50c94
|
|
7
|
+
data.tar.gz: 80779de18c3db314f0ca78bc7b1c07fb8a2290b9720fa2bc2cac7d85ab6965c19f06496c4c1e19ae08bd673d80d9731bcae600d329ef77775924ad542e0b4a98
|
data/Gemfile.lock
CHANGED
data/bin/git_ownership_insights
CHANGED
|
@@ -158,7 +158,7 @@ def contribution_message(directory_path:, duration_in_days:, begin_time:, debug:
|
|
|
158
158
|
data[:directories].each do |dir, dir_data|
|
|
159
159
|
puts " Directory: #{dir}\n Top files:"
|
|
160
160
|
dir_data[:files].each do |file_data|
|
|
161
|
-
puts " #{File.basename(file_data[:name])} - #{file_data[:count]} #{file_team_map[file_data[:name]]}"
|
|
161
|
+
puts " #{File.basename(file_data[:name])} - #{file_data[:count]} #{file_team_map[file_data[:name]].empty? ? "[ Excluded contributor ]" : file_team_map[file_data[:name]]}"
|
|
162
162
|
end
|
|
163
163
|
end
|
|
164
164
|
end
|