cobench 0.0.37 → 0.0.39

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: 1fe6bbe020470085a4d1b27652329050e512b24e7f70d695fe28ccd4a2632c19
4
- data.tar.gz: e343aa56c2adc91781570522a4f406f2dfdf612547f810a6b6a41a82a1fb2583
3
+ metadata.gz: b4cce8b862fa0d4d687cddb72a3fbc264b900373139a6bb2f36e5693382152ce
4
+ data.tar.gz: 2f3183c060f21f168cc0d5841c8371fdbd30b22afcf4b4d683edc410ec9d6f91
5
5
  SHA512:
6
- metadata.gz: 87a083edb57651abb5b3479d00158f5d69e9c8faef38d9400294e92089ec31eabff03dc7bca73a97b835f7629d4c1fc82f1da60393f7492d03735b9218bef802
7
- data.tar.gz: ce7e4c932dece1733026572c25f27f124622d391df73b7d5c8d5bfac896fc4d3ebe45317f59b1e4560a7ef6d716c76e790ca86628b7c2c59be33a29e3d285c8d
6
+ metadata.gz: f6c69f808e52df029c607224691bdc8162e3980d17a603276549e5d28ad75f4fe81916238a4eb895a0273c29fb9822265db668042afae693a5858bb88e11b7f6
7
+ data.tar.gz: 584f1ab28033e3972e080420a67e15070903bdab2b85a769c6f4a1c6c07c34ae7a7712f39076f9f46f6cde533d710c59e0a31706d0005dad442527ac697aa8a4
data/assets/index.xsl CHANGED
@@ -154,7 +154,7 @@ SOFTWARE.
154
154
  <xsl:text>issues</xsl:text>
155
155
  </a>
156
156
  <xsl:text>. </xsl:text>
157
- <xsl:text>"Msgs" is the total number of messages posted as a reviewer in pull requests. </xsl:text>
157
+ <xsl:text>"Msgs" is the total number of messages posted in pull requests where the user was a reviewer. </xsl:text>
158
158
  <xsl:text>"Pulls" is the total number of </xsl:text>
159
159
  <a href="https://docs.github.com/en/pull-requests">
160
160
  <xsl:text>pull requests</xsl:text>
@@ -199,7 +199,10 @@ SOFTWARE.
199
199
  <xsl:text>"</xsl:text>
200
200
  <xsl:value-of select="."/>
201
201
  <xsl:text>"</xsl:text>
202
- <xsl:text> stands for </xsl:text>
202
+ <xsl:if test="position() = 1">
203
+ <xsl:text> stands</xsl:text>
204
+ </xsl:if>
205
+ <xsl:text> for </xsl:text>
203
206
  <xsl:value-of select="@subtitle"/>
204
207
  </xsl:for-each>
205
208
  <xsl:text>.</xsl:text>
data/bin/cobench CHANGED
@@ -49,6 +49,7 @@ opts = Slop.parse(args, strict: true, help: true) do |o|
49
49
  o.bool '--dry', 'Make no real round trips to GitHub'
50
50
  o.bool '--reuse', 'Don\'t fetch from GitHub, reuse the existing XML file'
51
51
  o.integer '--days', 'How many days to measure', default: 7
52
+ o.integer '--delay', 'Delay between HTTP calls to GitHub API, in milliseconds', default: 1000
52
53
  o.string '--to', 'Directory where to save all files to', default: './cobench'
53
54
  o.string '--token', 'GitHub authentication token'
54
55
  o.array '--coder', 'GitHub nickname of a coder to track'
@@ -93,7 +94,7 @@ def build_xml(opts, loog)
93
94
  loog.warn("Connecting to GitHub without a token, this may lead to errors, use --token")
94
95
  end
95
96
  api.auto_paginate = true
96
- api = Obk.new(api, pause: 2000)
97
+ api = Obk.new(api, pause: opts[:delay])
97
98
  loog.info("Reading GitHub data for the last #{opts[:days]} days")
98
99
  titles = {}
99
100
  data = {}
data/features/cli.feature CHANGED
@@ -16,7 +16,7 @@ Feature: Simple Reporting
16
16
  And Exit code is zero
17
17
 
18
18
  Scenario: Simple report through real GitHub API
19
- When I run bin/cobench with "--coder=yegor256 --include=*/* --days=1 --verbose"
19
+ When I run bin/cobench with "--coder=yegor256 --include=*/* --days=1 --verbose --delay=5000"
20
20
  Then Stdout contains "XML saved to"
21
21
  And Exit code is zero
22
22
 
@@ -44,6 +44,7 @@ class Cobench::Reviews
44
44
  next unless Cobench::Match.new(@opts, loog).matches?(repo)
45
45
  loog.debug("Including #{repo}##{pr} reviewed by @#{@user}")
46
46
  posted = @api.pull_request_comments(repo, pr).count { |c| c[:user][:login].downcase == @user }
47
+ posted += @api.issue_comments(repo, pr).count { |c| c[:user][:login].downcase == @user }
47
48
  loog.debug("#{posted} messages posted by @#{@user} to #{repo}##{pr}")
48
49
  msgs += posted
49
50
  end
@@ -23,5 +23,5 @@
23
23
  # Copyright:: Copyright (c) 2022 Yegor Bugayenko
24
24
  # License:: MIT
25
25
  module Cobench
26
- VERSION = '0.0.37'.freeze
26
+ VERSION = '0.0.39'.freeze
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cobench
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.37
4
+ version: 0.0.39
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-21 00:00:00.000000000 Z
11
+ date: 2022-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: backtrace