github_repo_statistics 2.3.1 → 2.3.2

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: e27a6a13a4ce688ed3bda40c18cb6eb74ad11f4d0976009a681a21892fdadce5
4
- data.tar.gz: cbcc63cb44bbfbdd50e4c6f7d5b14efdc6672a0c303d6f0a4226fed64a83b98c
3
+ metadata.gz: c68a87b66a8e555e6590746aac45271fabc10897716401acfc022e1bac9c1609
4
+ data.tar.gz: 6d206daea88a88101e767be234c5a4f34b08b4c8d874953ec3d9e7564873cb5b
5
5
  SHA512:
6
- metadata.gz: ac54df8ecee12b70d3680668e3aa112ae7b694c3f5da2f56a95a7d87399c8e0a91f9ac3cebf703e427839bf179c81ec005d3f811c25110912b0f8bcd7ee30f97
7
- data.tar.gz: 33fb0160c53b81602df8eff54904148b9932c6ff461b1cca5caca6a6dd53d1facc1fef036606eb68e8605550f4dd1be0f958cd85c08ab56f54dfd918e26cd358
6
+ metadata.gz: 0afc7b9c120c3245d49cae1cae76428af48d8d435e76dbc396d0369af4640f577dc8416a894055a74248a61d02f5fc2e53095eccf1895889488adbf9a117e461
7
+ data.tar.gz: f74e864d3d6fbd63468e117f690d5c302661f5757d08c46b6ce3a0b49012d114eb1b9ba4f5e429dc8ede6b3d537044e45fc12706ab1c72c1f182632c6cf94dc3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- github_repo_statistics (2.2.19)
4
+ github_repo_statistics (2.3.2)
5
5
  date
6
6
  faraday-retry
7
7
  google-cloud-bigquery
@@ -37,6 +37,11 @@ OptionParser.new do |opts|
37
37
  options[:excluded_files] = excluded_files
38
38
  end
39
39
 
40
+ opts.on('--excluded-commits STRING',
41
+ 'Comma-delimited list of excluded commit keywords [example: SF-1054 Some message,PF-1056 Some other message]') do |excluded_commits|
42
+ options[:excluded_commits] = excluded_commits
43
+ end
44
+
40
45
  opts.on('--steps STRING', 'Number of steps the script will go into the past [default: 1]') do |steps|
41
46
  options[:steps] = steps
42
47
  end
@@ -106,6 +111,7 @@ HOTSPOT = options[:hotspot_files] || false
106
111
  FILE_OUTPUT = options[:file_output] || false
107
112
  CODE_EXTENSIONS = options[:code_extension] ? options[:code_extension].split(',') : ['.swift', '.kt']
108
113
  EXCLUDED_FILES = options[:excluded_files]
114
+ EXCLUDED_COMMITS = options[:excluded_commits]
109
115
 
110
116
  unless CI
111
117
  puts "\nDirectory: #{REPO_PATH}\n"
@@ -196,6 +196,11 @@ class GithubRepoStatistics
196
196
  filename = File.basename(file)
197
197
  commit_count = git_commit_count(file:, start_date:, end_date:).to_i
198
198
  git_log = git_commit_info(file:, start_date:, end_date:).split("\n")
199
+
200
+ if EXCLUDED_COMMITS
201
+ git_log = git_log.reject { |c| c.include?(EXCLUDED_COMMITS) }
202
+ end
203
+
199
204
  prs = git_log.map do |pr|
200
205
  match = pr.match(/#(\d+)/)
201
206
  if match
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class GithubRepoStatistics
4
- VERSION = '2.3.1'
4
+ VERSION = '2.3.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_repo_statistics
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.1
4
+ version: 2.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Serghei Moret
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-08 00:00:00.000000000 Z
11
+ date: 2024-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: date