cobench 0.0.46 → 0.0.47
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.simplecov +1 -1
- data/Gemfile +1 -1
- data/LICENSE.txt +1 -1
- data/Rakefile +1 -1
- data/assets/index.xsl +2 -2
- data/bin/cobench +1 -1
- data/cobench.gemspec +1 -1
- data/features/step_definitions/steps.rb +1 -1
- data/features/support/env.rb +1 -1
- data/lib/cobench/mask.rb +4 -2
- data/lib/cobench/match.rb +2 -2
- data/lib/cobench/metrics/commits.rb +2 -2
- data/lib/cobench/metrics/issues.rb +2 -2
- data/lib/cobench/metrics/pulls.rb +2 -2
- data/lib/cobench/metrics/reviews.rb +2 -2
- data/lib/cobench/version.rb +3 -3
- data/test/metrics/test_pulls.rb +2 -2
- data/test/metrics/test_reviews.rb +2 -2
- data/test/test__helper.rb +1 -1
- data/test/test_mask.rb +2 -2
- data/test/test_match.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 20d2cd3046931b9e30d2878aac4ff348c0bde94b2e457d6c1a12c6268194fe1f
|
4
|
+
data.tar.gz: eaf1407d3e3e133486ac7c4f64a7f7b0463bab0b9b12cf0243c990ae4bb3375b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe713ab9f20ede06ce67137478f02d48aab269161915fdd747603579d745c18bee587e406805e5f5bc2409ce1383ce6084282909c0382c22e46fcd9172fe12e6
|
7
|
+
data.tar.gz: 66c0ef0997ed3d8451f79cae6e65a9493289e622af8cd658737e599c073ba539cd0adb231789008d3ff52b82be7e2b33dd8c53d90a373173eb5174f508080056
|
data/.simplecov
CHANGED
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
data/Rakefile
CHANGED
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
|
@@ -314,7 +314,7 @@ SOFTWARE.
|
|
314
314
|
</xsl:if>
|
315
315
|
</td>
|
316
316
|
<td class="avatar">
|
317
|
-
<img src="https://
|
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
data/cobench.gemspec
CHANGED
data/features/support/env.rb
CHANGED
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)
|
@@ -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)
|
data/lib/cobench/version.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
|
@@ -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.
|
26
|
+
VERSION = '0.0.47'.freeze
|
27
27
|
end
|
data/test/metrics/test_pulls.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
|
@@ -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
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.
|
4
|
+
version: 0.0.47
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: backtrace
|