mergem 0.0.3 → 0.1.0
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 +4 -4
- data/.0pdd.yml +3 -0
- data/.github/workflows/actionlint.yml +25 -0
- data/.github/workflows/copyrights.yml +19 -0
- data/.github/workflows/cron.yml +12 -5
- data/.github/workflows/markdown-lint.yml +19 -0
- data/.github/workflows/pdd.yml +11 -3
- data/.github/workflows/rake.yml +9 -4
- data/.github/workflows/reuse.yml +19 -0
- data/.github/workflows/typos.yml +19 -0
- data/.github/workflows/xcop.yml +6 -2
- data/.github/workflows/yamllint.yml +19 -0
- data/.gitignore +8 -5
- data/.rubocop.yml +12 -1
- data/.rultor.yml +6 -1
- data/Gemfile +13 -27
- data/Gemfile.lock +177 -0
- data/LICENSE.txt +1 -1
- data/LICENSES/MIT.txt +21 -0
- data/README.md +22 -20
- data/REUSE.toml +35 -0
- data/Rakefile +3 -36
- data/bin/mergem +2 -19
- data/features/cli.feature +2 -0
- data/features/gem_package.feature +2 -0
- data/features/step_definitions/steps.rb +8 -25
- data/features/support/env.rb +2 -19
- data/lib/mergem/askrultor.rb +4 -21
- data/lib/mergem/pulls.rb +3 -20
- data/lib/mergem/repos.rb +4 -21
- data/lib/mergem/version.rb +4 -21
- data/mergem.gemspec +13 -29
- data/test/test__helper.rb +23 -20
- data/test/test_askrultor.rb +5 -22
- data/test/test_pulls.rb +6 -24
- data/test/test_repos.rb +10 -28
- metadata +35 -16
- data/.simplecov +0 -38
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mergem
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: backtrace
|
@@ -52,34 +51,48 @@ dependencies:
|
|
52
51
|
- - "~>"
|
53
52
|
- !ruby/object:Gem::Version
|
54
53
|
version: '0.2'
|
54
|
+
- !ruby/object:Gem::Dependency
|
55
|
+
name: nokogiri
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '1.18'
|
61
|
+
type: :runtime
|
62
|
+
prerelease: false
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - "~>"
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '1.18'
|
55
68
|
- !ruby/object:Gem::Dependency
|
56
69
|
name: obk
|
57
70
|
requirement: !ruby/object:Gem::Requirement
|
58
71
|
requirements:
|
59
|
-
- -
|
72
|
+
- - "~>"
|
60
73
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.3
|
74
|
+
version: '0.3'
|
62
75
|
type: :runtime
|
63
76
|
prerelease: false
|
64
77
|
version_requirements: !ruby/object:Gem::Requirement
|
65
78
|
requirements:
|
66
|
-
- -
|
79
|
+
- - "~>"
|
67
80
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.3
|
81
|
+
version: '0.3'
|
69
82
|
- !ruby/object:Gem::Dependency
|
70
83
|
name: octokit
|
71
84
|
requirement: !ruby/object:Gem::Requirement
|
72
85
|
requirements:
|
73
86
|
- - "~>"
|
74
87
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
88
|
+
version: '10.0'
|
76
89
|
type: :runtime
|
77
90
|
prerelease: false
|
78
91
|
version_requirements: !ruby/object:Gem::Requirement
|
79
92
|
requirements:
|
80
93
|
- - "~>"
|
81
94
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
95
|
+
version: '10.0'
|
83
96
|
- !ruby/object:Gem::Dependency
|
84
97
|
name: rainbow
|
85
98
|
requirement: !ruby/object:Gem::Requirement
|
@@ -128,23 +141,31 @@ executables:
|
|
128
141
|
- mergem
|
129
142
|
extensions: []
|
130
143
|
extra_rdoc_files:
|
131
|
-
- README.md
|
132
144
|
- LICENSE.txt
|
145
|
+
- README.md
|
133
146
|
files:
|
134
147
|
- ".0pdd.yml"
|
135
148
|
- ".gitattributes"
|
149
|
+
- ".github/workflows/actionlint.yml"
|
150
|
+
- ".github/workflows/copyrights.yml"
|
136
151
|
- ".github/workflows/cron.yml"
|
152
|
+
- ".github/workflows/markdown-lint.yml"
|
137
153
|
- ".github/workflows/pdd.yml"
|
138
154
|
- ".github/workflows/rake.yml"
|
155
|
+
- ".github/workflows/reuse.yml"
|
156
|
+
- ".github/workflows/typos.yml"
|
139
157
|
- ".github/workflows/xcop.yml"
|
158
|
+
- ".github/workflows/yamllint.yml"
|
140
159
|
- ".gitignore"
|
141
160
|
- ".pdd"
|
142
161
|
- ".rubocop.yml"
|
143
162
|
- ".rultor.yml"
|
144
|
-
- ".simplecov"
|
145
163
|
- Gemfile
|
164
|
+
- Gemfile.lock
|
146
165
|
- LICENSE.txt
|
166
|
+
- LICENSES/MIT.txt
|
147
167
|
- README.md
|
168
|
+
- REUSE.toml
|
148
169
|
- Rakefile
|
149
170
|
- bin/mergem
|
150
171
|
- features/cli.feature
|
@@ -161,12 +182,11 @@ files:
|
|
161
182
|
- test/test_askrultor.rb
|
162
183
|
- test/test_pulls.rb
|
163
184
|
- test/test_repos.rb
|
164
|
-
homepage:
|
185
|
+
homepage: https://github.com/yegor256/mergem
|
165
186
|
licenses:
|
166
187
|
- MIT
|
167
188
|
metadata:
|
168
189
|
rubygems_mfa_required: 'true'
|
169
|
-
post_install_message:
|
170
190
|
rdoc_options:
|
171
191
|
- "--charset=UTF-8"
|
172
192
|
require_paths:
|
@@ -182,8 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
182
202
|
- !ruby/object:Gem::Version
|
183
203
|
version: '0'
|
184
204
|
requirements: []
|
185
|
-
rubygems_version: 3.
|
186
|
-
signing_key:
|
205
|
+
rubygems_version: 3.6.7
|
187
206
|
specification_version: 4
|
188
|
-
summary: GitHub API client
|
207
|
+
summary: GitHub API client that deals with Pull Requests
|
189
208
|
test_files: []
|
data/.simplecov
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
# Copyright (c) 2022-2023 Yegor Bugayenko
|
2
|
-
#
|
3
|
-
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
-
# of this software and associated documentation files (the 'Software'), to deal
|
5
|
-
# in the Software without restriction, including without limitation the rights
|
6
|
-
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
-
# copies of the Software, and to permit persons to whom the Software is
|
8
|
-
# furnished to do so, subject to the following conditions:
|
9
|
-
#
|
10
|
-
# The above copyright notice and this permission notice shall be included in all
|
11
|
-
# copies or substantial portions of the Software.
|
12
|
-
#
|
13
|
-
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
-
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
-
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
|
16
|
-
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
-
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
-
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
19
|
-
# SOFTWARE.
|
20
|
-
|
21
|
-
if Gem.win_platform?
|
22
|
-
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
23
|
-
SimpleCov::Formatter::HTMLFormatter
|
24
|
-
]
|
25
|
-
SimpleCov.start do
|
26
|
-
add_filter '/test/'
|
27
|
-
add_filter '/features/'
|
28
|
-
end
|
29
|
-
else
|
30
|
-
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
|
31
|
-
[SimpleCov::Formatter::HTMLFormatter]
|
32
|
-
)
|
33
|
-
SimpleCov.start do
|
34
|
-
add_filter '/test/'
|
35
|
-
add_filter '/features/'
|
36
|
-
minimum_coverage 30
|
37
|
-
end
|
38
|
-
end
|