github_repo_statistics 2.3.2 → 2.3.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c68a87b66a8e555e6590746aac45271fabc10897716401acfc022e1bac9c1609
4
- data.tar.gz: 6d206daea88a88101e767be234c5a4f34b08b4c8d874953ec3d9e7564873cb5b
3
+ metadata.gz: bdc56e1b4161b43e58b1c055640a0642cb23d67543b862ade3c9c3b3bb063ca9
4
+ data.tar.gz: 217dd6a6bca243b9d5a9b2f128d2daabb89fefec6797594eeb053163feef6a17
5
5
  SHA512:
6
- metadata.gz: 0afc7b9c120c3245d49cae1cae76428af48d8d435e76dbc396d0369af4640f577dc8416a894055a74248a61d02f5fc2e53095eccf1895889488adbf9a117e461
7
- data.tar.gz: f74e864d3d6fbd63468e117f690d5c302661f5757d08c46b6ce3a0b49012d114eb1b9ba4f5e429dc8ede6b3d537044e45fc12706ab1c72c1f182632c6cf94dc3
6
+ metadata.gz: bc29053f5cdd3a17845c67eddac486e5ba8e1d106f490a5347438cc1d017641a90094bc2a2e7ba4a916b30737ce542fdbe19f706954afdd3e1f4a1d4e62945fd
7
+ data.tar.gz: f2aa93b43b2d25b4d244cc7248ee54ec617ce0dfffb7c05103fd468c8ade199c7390b31a126590ff57246c8ab3ffe444ef5f7c435c792fe4eae58a3804f656dc
@@ -38,8 +38,8 @@ OptionParser.new do |opts|
38
38
  end
39
39
 
40
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
41
+ 'Comma-delimited list of excluded PRs [example: 1234,1235,2222]') do |excluded_prs|
42
+ options[:excluded_prs] = excluded_prs
43
43
  end
44
44
 
45
45
  opts.on('--steps STRING', 'Number of steps the script will go into the past [default: 1]') do |steps|
@@ -111,7 +111,7 @@ HOTSPOT = options[:hotspot_files] || false
111
111
  FILE_OUTPUT = options[:file_output] || false
112
112
  CODE_EXTENSIONS = options[:code_extension] ? options[:code_extension].split(',') : ['.swift', '.kt']
113
113
  EXCLUDED_FILES = options[:excluded_files]
114
- EXCLUDED_COMMITS = options[:excluded_commits]
114
+ EXCLUDED_PRS = options[:excluded_prs]
115
115
 
116
116
  unless CI
117
117
  puts "\nDirectory: #{REPO_PATH}\n"
@@ -197,8 +197,8 @@ class GithubRepoStatistics
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
199
 
200
- if EXCLUDED_COMMITS
201
- git_log = git_log.reject { |c| c.include?(EXCLUDED_COMMITS) }
200
+ if EXCLUDED_PRS
201
+ git_log = git_log.reject { |c| c.include?(EXCLUDED_PRS) }
202
202
  end
203
203
 
204
204
  prs = git_log.map do |pr|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class GithubRepoStatistics
4
- VERSION = '2.3.2'
4
+ VERSION = '2.3.3'
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.2
4
+ version: 2.3.3
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-21 00:00:00.000000000 Z
11
+ date: 2024-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: date