cobench 0.0.46 → 0.0.48

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: '09c46a63c36df91d581ad42a9f05df0ff842a99642173c8fe28255d14c6541b0'
4
- data.tar.gz: bd35674d535c1d87e31fa5eadf78aafe05374342729422a9a4403ab6b967f400
3
+ metadata.gz: 6749a0d859fd42e3dd757ce6d2dbd6482629415d4a35161669296daba51d958e
4
+ data.tar.gz: 18ff55bfa8d2ac87f98544e2767c17ef24581f83a982faab9bc7b65b18e0730e
5
5
  SHA512:
6
- metadata.gz: f0a16d43937d9a5e5cb905ac4c1d08ab987325d7076d053920d402a40824db2159b9c33351afb11df4d1cca11a5c06e806201917f2a20889c5bf94834fff1b79
7
- data.tar.gz: dbd9057ae67839cc2678b7e0ffd5cc2cd514f33ea6fc3884d282ce297af476cbae270df5751ddb42ebcf5af733fcf7b045393f0fac695152492d3b0149f5e37d
6
+ metadata.gz: cbd55fe7cc97545afa4a9c4a9263c039991a88c32f614ab78e2671d0da47c17900c58a58b93f94533f92208b189a925d234b933487f35b0f9aa3e024179ec3e4
7
+ data.tar.gz: 1406ef521498cabae719f3f2f172ceba9d8b1e9449c8f81f488b32f0d6dc2b998f66ebd081da69fc6990150c42f55b73faac1cdd848714e496dc34404ff7a06a
@@ -20,4 +20,4 @@ jobs:
20
20
  with:
21
21
  ruby-version: ${{ matrix.ruby }}
22
22
  - run: bundle update
23
- - run: bundle exec rake
23
+ - run: bundle exec rake clean test rubocop xcop
data/.simplecov CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -20,3 +20,12 @@
20
20
 
21
21
  source 'https://rubygems.org'
22
22
  gemspec
23
+
24
+ gem 'cucumber', '8.0.0', require: false
25
+ gem 'minitest', '5.18.1', require: false
26
+ gem 'rake', '13.0.6', require: false
27
+ gem 'rdoc', '6.5.0', require: false
28
+ gem 'rubocop', '1.54.2', require: false
29
+ gem 'rubocop-rspec', '2.22.0', require: false
30
+ gem 'simplecov', '0.22.0', require: false
31
+ gem 'xcop', '0.7.1', require: false
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  (The MIT License)
2
2
 
3
- Copyright (c) 2022 Yegor Bugayenko
3
+ Copyright (c) 2022-2023 Yegor Bugayenko
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the 'Software'), to deal
data/Rakefile CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/assets/index.xsl CHANGED
@@ -2,7 +2,7 @@
2
2
  <!--
3
3
  (The MIT License)
4
4
 
5
- Copyright (c) 2022 Yegor Bugayenko
5
+ Copyright (c) 2022-2023 Yegor Bugayenko
6
6
 
7
7
  Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  of this software and associated documentation files (the 'Software'), to deal
@@ -148,11 +148,11 @@ SOFTWARE.
148
148
  <xsl:text>hits of code</xsl:text>
149
149
  </a>
150
150
  <xsl:text>. </xsl:text>
151
- <xsl:text>"Issues" is the total number of issues submitted by the user. </xsl:text>
151
+ <xsl:text>"Issues" is the total number of </xsl:text>
152
152
  <a href="https://docs.github.com/en/issues">
153
153
  <xsl:text>issues</xsl:text>
154
154
  </a>
155
- <xsl:text>. </xsl:text>
155
+ <xsl:text> submitted by the user. </xsl:text>
156
156
  <xsl:text>"LcP" is an average lifecycle of a pull request in hours. </xsl:text>
157
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>
@@ -314,7 +314,7 @@ SOFTWARE.
314
314
  </xsl:if>
315
315
  </td>
316
316
  <td class="avatar">
317
- <img src="https://socatar.com/github/{@id}/64-64"/>
317
+ <img src="https://github.com/{@id}.png" width="64" height="64"/>
318
318
  </td>
319
319
  <td>
320
320
  <a href="https://github.com/{@id}">
data/bin/cobench CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (c) 2022 Yegor Bugayenko
2
+ # Copyright (c) 2022-2023 Yegor Bugayenko
3
3
  #
4
4
  # Permission is hereby granted, free of charge, to any person obtaining a copy
5
5
  # of this software and associated documentation files (the 'Software'), to deal
data/cobench.gemspec CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -45,15 +45,7 @@ Gem::Specification.new do |s|
45
45
  s.add_runtime_dependency 'loog', '~>0.2'
46
46
  s.add_runtime_dependency 'nokogiri', '~>1.10'
47
47
  s.add_runtime_dependency 'obk', '0.3.0'
48
- s.add_runtime_dependency 'octokit', '~>4.0'
48
+ s.add_runtime_dependency 'octokit', '~>6.0'
49
49
  s.add_runtime_dependency 'rainbow', '~>3.0'
50
50
  s.add_runtime_dependency 'slop', '~>4.4'
51
- s.add_development_dependency 'codecov', '0.6.0'
52
- s.add_development_dependency 'cucumber', '8.0.0'
53
- s.add_development_dependency 'minitest', '5.15.0'
54
- s.add_development_dependency 'rake', '13.0.6'
55
- s.add_development_dependency 'rdoc', '6.4.0'
56
- s.add_development_dependency 'rubocop', '1.32.0'
57
- s.add_development_dependency 'rubocop-rspec', '2.11.1'
58
- s.add_development_dependency 'xcop', '0.7.1'
59
51
  end
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -40,7 +40,7 @@ end
40
40
 
41
41
  Given(/^I have a "([^"]*)" file with content:$/) do |file, text|
42
42
  FileUtils.mkdir_p(File.dirname(file)) unless File.exist?(file)
43
- File.write(file, text.gsub(/\\xFF/, 0xFF.chr))
43
+ File.write(file, text.gsub('\\xFF', 0xFF.chr))
44
44
  end
45
45
 
46
46
  When(%r{^I run bin/cobench with "([^"]*)"$}) do |arg|
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
data/lib/cobench/mask.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -18,9 +18,11 @@
18
18
  # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
19
  # SOFTWARE.
20
20
 
21
+ require_relative 'version'
22
+
21
23
  # Mask to apply for a repo name.
22
24
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
23
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
25
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
24
26
  # License:: MIT
25
27
  class Cobench::Mask
26
28
  def initialize(txt)
data/lib/cobench/match.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -22,7 +22,7 @@ require_relative 'mask'
22
22
 
23
23
  # Match of masks.
24
24
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
25
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
25
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
26
26
  # License:: MIT
27
27
  class Cobench::Match
28
28
  def initialize(opts, loog)
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -23,7 +23,7 @@ require_relative '../match'
23
23
 
24
24
  # Commits in GitHub API.
25
25
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
26
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
26
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
27
27
  # License:: MIT
28
28
  class Cobench::Commits
29
29
  def initialize(api, user, opts)
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -23,7 +23,7 @@ require_relative '../match'
23
23
 
24
24
  # Issues in GitHub API.
25
25
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
26
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
26
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
27
27
  # License:: MIT
28
28
  class Cobench::Issues
29
29
  def initialize(api, user, opts)
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -24,7 +24,7 @@ require_relative '../match'
24
24
 
25
25
  # Pulls in GitHub API.
26
26
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
27
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
27
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
28
28
  # License:: MIT
29
29
  class Cobench::Pulls
30
30
  def initialize(api, user, opts)
@@ -65,7 +65,7 @@ class Cobench::Pulls
65
65
  },
66
66
  {
67
67
  title: 'LcP',
68
- total: lcps.size.zero? ? 0 : ((lcps.inject(&:+) / lcps.size) / (60 * 60)).to_i
68
+ total: lcps.empty? ? 0 : ((lcps.inject(&:+) / lcps.size) / (60 * 60)).to_i
69
69
  },
70
70
  {
71
71
  title: 'HoC',
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -23,7 +23,7 @@ require_relative '../match'
23
23
 
24
24
  # Reviews in GitHub API.
25
25
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
26
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
26
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
27
27
  # License:: MIT
28
28
  class Cobench::Reviews
29
29
  def initialize(api, user, opts)
@@ -43,6 +43,11 @@ class Cobench::Reviews
43
43
  repo = p.repository_url.split('/')[-2..-1].join('/')
44
44
  next unless Cobench::Match.new(@opts, loog).matches?(repo)
45
45
  loog.debug("Including #{repo}##{pr} reviewed by @#{@user}")
46
+ reviews = @api.pull_request_reviews(repo, pr).count { |c| c[:user][:login].downcase == @user }
47
+ if reviews.zero?
48
+ loog.debug("There are no reviews in #{repo}##{pr} by @#{@user}")
49
+ next
50
+ end
46
51
  posted = @api.pull_request_comments(repo, pr).count { |c| c[:user][:login].downcase == @user }
47
52
  posted += @api.issue_comments(repo, pr).count { |c| c[:user][:login].downcase == @user }
48
53
  loog.debug("#{posted} messages posted by @#{@user} to #{repo}##{pr}")
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -20,8 +20,8 @@
20
20
 
21
21
  # Cobench main module.
22
22
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
23
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
23
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
24
24
  # License:: MIT
25
25
  module Cobench
26
- VERSION = '0.0.46'.freeze
26
+ VERSION = '0.0.48'.freeze
27
27
  end
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -25,7 +25,7 @@ require_relative '../../lib/cobench/metrics/pulls'
25
25
 
26
26
  # Test for Pulls.
27
27
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
28
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
28
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
29
29
  # License:: MIT
30
30
  class TestPulls < Minitest::Test
31
31
  def test_real
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -25,7 +25,7 @@ require_relative '../../lib/cobench/metrics/reviews'
25
25
 
26
26
  # Test for Reviews.
27
27
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
28
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
28
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
29
29
  # License:: MIT
30
30
  class TestReviews < Minitest::Test
31
31
  def test_real
data/test/test__helper.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -22,9 +22,5 @@ $stdout.sync = true
22
22
 
23
23
  require 'simplecov'
24
24
  SimpleCov.start
25
- if ENV['CI'] == 'true'
26
- require 'codecov'
27
- SimpleCov.formatter = SimpleCov::Formatter::Codecov
28
- end
29
25
 
30
26
  require 'minitest/autorun'
data/test/test_mask.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -23,7 +23,7 @@ require_relative '../lib/cobench/mask'
23
23
 
24
24
  # Test for Mask.
25
25
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
26
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
26
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
27
27
  # License:: MIT
28
28
  class TestMask < Minitest::Test
29
29
  def test_positive
data/test/test_match.rb CHANGED
@@ -1,4 +1,4 @@
1
- # Copyright (c) 2022 Yegor Bugayenko
1
+ # Copyright (c) 2022-2023 Yegor Bugayenko
2
2
  #
3
3
  # Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  # of this software and associated documentation files (the 'Software'), to deal
@@ -24,7 +24,7 @@ require_relative '../lib/cobench/match'
24
24
 
25
25
  # Test for Match.
26
26
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
27
- # Copyright:: Copyright (c) 2022 Yegor Bugayenko
27
+ # Copyright:: Copyright (c) 2022-2023 Yegor Bugayenko
28
28
  # License:: MIT
29
29
  class TestMatch < Minitest::Test
30
30
  def test_positive
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.46
4
+ version: 0.0.48
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-11-26 00:00:00.000000000 Z
11
+ date: 2023-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: backtrace
@@ -86,14 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '4.0'
89
+ version: '6.0'
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '4.0'
96
+ version: '6.0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: rainbow
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -122,118 +122,6 @@ dependencies:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
124
  version: '4.4'
125
- - !ruby/object:Gem::Dependency
126
- name: codecov
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - '='
130
- - !ruby/object:Gem::Version
131
- version: 0.6.0
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - '='
137
- - !ruby/object:Gem::Version
138
- version: 0.6.0
139
- - !ruby/object:Gem::Dependency
140
- name: cucumber
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - '='
144
- - !ruby/object:Gem::Version
145
- version: 8.0.0
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - '='
151
- - !ruby/object:Gem::Version
152
- version: 8.0.0
153
- - !ruby/object:Gem::Dependency
154
- name: minitest
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - '='
158
- - !ruby/object:Gem::Version
159
- version: 5.15.0
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - '='
165
- - !ruby/object:Gem::Version
166
- version: 5.15.0
167
- - !ruby/object:Gem::Dependency
168
- name: rake
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - '='
172
- - !ruby/object:Gem::Version
173
- version: 13.0.6
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - '='
179
- - !ruby/object:Gem::Version
180
- version: 13.0.6
181
- - !ruby/object:Gem::Dependency
182
- name: rdoc
183
- requirement: !ruby/object:Gem::Requirement
184
- requirements:
185
- - - '='
186
- - !ruby/object:Gem::Version
187
- version: 6.4.0
188
- type: :development
189
- prerelease: false
190
- version_requirements: !ruby/object:Gem::Requirement
191
- requirements:
192
- - - '='
193
- - !ruby/object:Gem::Version
194
- version: 6.4.0
195
- - !ruby/object:Gem::Dependency
196
- name: rubocop
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - '='
200
- - !ruby/object:Gem::Version
201
- version: 1.32.0
202
- type: :development
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - '='
207
- - !ruby/object:Gem::Version
208
- version: 1.32.0
209
- - !ruby/object:Gem::Dependency
210
- name: rubocop-rspec
211
- requirement: !ruby/object:Gem::Requirement
212
- requirements:
213
- - - '='
214
- - !ruby/object:Gem::Version
215
- version: 2.11.1
216
- type: :development
217
- prerelease: false
218
- version_requirements: !ruby/object:Gem::Requirement
219
- requirements:
220
- - - '='
221
- - !ruby/object:Gem::Version
222
- version: 2.11.1
223
- - !ruby/object:Gem::Dependency
224
- name: xcop
225
- requirement: !ruby/object:Gem::Requirement
226
- requirements:
227
- - - '='
228
- - !ruby/object:Gem::Version
229
- version: 0.7.1
230
- type: :development
231
- prerelease: false
232
- version_requirements: !ruby/object:Gem::Requirement
233
- requirements:
234
- - - '='
235
- - !ruby/object:Gem::Version
236
- version: 0.7.1
237
125
  description: Downloads statistics from GitHub and builds a nice HTML report
238
126
  email: yegor256@gmail.com
239
127
  executables: