git_ownership_insights 1.1.0 → 1.1.1
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/bin/git_ownership_insights +2 -2
- 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: 7a07de43c9627bdeceeedc7e06d1028645a3b374f26203063e1bc23ed3024611
|
|
4
|
+
data.tar.gz: b7ea15dc22b92a8742278ff835612f180125240af9531e2ec764c7b19a80e5c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f828c59098fb64d0017ac93a0fe15894ea8c92a08a5f6a2145d84ff7e88f38c089311cb5d177257169a9d88e8d0948c592f85c12f8a1209135e4442c223b0795
|
|
7
|
+
data.tar.gz: eb8302ef0f5a93679411c77c243dfece43e0d902a129325d4319d739f103fbf5c2ed29f225d9c3c705466525aaef7238964fd557176fbb87036e97355119967e
|
data/bin/git_ownership_insights
CHANGED
|
@@ -79,7 +79,7 @@ OptionParser.new do |opts|
|
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
opts.on('--code-extensions STRING',
|
|
82
|
-
'The file extensions that consider to be code [default: ".kt
|
|
82
|
+
'The file extensions that consider to be code [default: ".kt,.swift"]') do |code_extension|
|
|
83
83
|
options[:code_extension] = code_extension
|
|
84
84
|
end
|
|
85
85
|
|
|
@@ -110,7 +110,7 @@ CI = options[:ci] || false
|
|
|
110
110
|
DEFAULT_BRANCH = options[:default_branch] || 'master'
|
|
111
111
|
CODEOWNERS = options[:codeowners] || false
|
|
112
112
|
HOTSPOT = options[:hotspot_files] || false
|
|
113
|
-
CODE_EXTENSIONS = options[:code_extension] ? options[:code_extension].split : ['.swift', '.kt']
|
|
113
|
+
CODE_EXTENSIONS = options[:code_extension] ? options[:code_extension].split(',') : ['.swift', '.kt']
|
|
114
114
|
EXCLUDED_FILES = options[:excluded_files]
|
|
115
115
|
|
|
116
116
|
unless CI
|