rubocop_challenger 2.0.0.pre11 → 2.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +10 -5
- data/.rubocop.yml +2 -0
- data/.rubocop_todo.yml +1 -1
- data/CHANGELOG.md +109 -188
- data/Gemfile.lock +42 -38
- data/challenger.gemspec +3 -2
- data/lib/rubocop_challenger.rb +1 -0
- data/lib/rubocop_challenger/bundler/command.rb +1 -1
- data/lib/rubocop_challenger/pull_request.rb +1 -1
- data/lib/rubocop_challenger/rubocop/rule.rb +1 -1
- data/lib/rubocop_challenger/version.rb +1 -1
- metadata +27 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6750425d109e73b835ecb0287d57861eb6a7cc54bbf48ae13aba5ebad670b01a
|
4
|
+
data.tar.gz: 7c15913ce9010838d5ee7637d55b6a90e2cb097cadc0c31d12b94ed78b054b9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fb4287bf9a2fddead8443186c84e4ab1083fbc66adb96f901b838803a8923e5aff67419b4d0b2c38bd9cdee170538693a1c993cb39295d8df5105f7a2a40a3d
|
7
|
+
data.tar.gz: 272d169b16d6c4c40263405818d53d86e6189b97158728d835e4512db79ffb518c41eb1ae27a826425bb788ad2638baa176d11d76796eedc91c4245d47b1000b
|
data/.circleci/config.yml
CHANGED
@@ -5,22 +5,22 @@
|
|
5
5
|
version: 2.1
|
6
6
|
|
7
7
|
orbs:
|
8
|
-
ruby-orbs: sue445/ruby-orbs@1.6.
|
8
|
+
ruby-orbs: sue445/ruby-orbs@1.6.1
|
9
9
|
code-climate: rvla/code-climate@0.0.2
|
10
10
|
|
11
11
|
references:
|
12
12
|
- &ruby_version
|
13
13
|
ruby_version:
|
14
14
|
type: enum
|
15
|
-
enum: ['2.5', '2.6', '2.7', 'latest']
|
16
|
-
default: '
|
15
|
+
enum: ['2.5', '2.6', '2.7', '3.0', 'latest']
|
16
|
+
default: '3.0'
|
17
17
|
|
18
18
|
executors:
|
19
19
|
default:
|
20
20
|
parameters:
|
21
21
|
<<: *ruby_version
|
22
22
|
docker:
|
23
|
-
- image: circleci/ruby:<< parameters.ruby_version
|
23
|
+
- image: circleci/ruby:<< parameters.ruby_version >>
|
24
24
|
working_directory: ~/repo
|
25
25
|
|
26
26
|
commands:
|
@@ -159,7 +159,7 @@ jobs:
|
|
159
159
|
- code-climate/install
|
160
160
|
- code-climate/sum-coverage:
|
161
161
|
input: codeclimate.*.json
|
162
|
-
parts:
|
162
|
+
parts: 5
|
163
163
|
- code-climate/upload-coverage
|
164
164
|
rubocop:
|
165
165
|
executor: default
|
@@ -201,6 +201,9 @@ workflows:
|
|
201
201
|
- build:
|
202
202
|
name: build_on_ruby_2.7
|
203
203
|
ruby_version: '2.7'
|
204
|
+
- build:
|
205
|
+
name: build_on_ruby_3.0
|
206
|
+
ruby_version: '3.0'
|
204
207
|
- build:
|
205
208
|
name: build_on_ruby_latest
|
206
209
|
ruby_version: 'latest'
|
@@ -212,6 +215,7 @@ workflows:
|
|
212
215
|
- build_on_ruby_2.5
|
213
216
|
- build_on_ruby_2.6
|
214
217
|
- build_on_ruby_2.7
|
218
|
+
- build_on_ruby_3.0
|
215
219
|
- build_on_ruby_latest
|
216
220
|
- release:
|
217
221
|
context: RubyGems API Key
|
@@ -219,6 +223,7 @@ workflows:
|
|
219
223
|
- build_on_ruby_2.5
|
220
224
|
- build_on_ruby_2.6
|
221
225
|
- build_on_ruby_2.7
|
226
|
+
- build_on_ruby_3.0
|
222
227
|
- build_on_ruby_latest
|
223
228
|
- rubocop
|
224
229
|
filters:
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config --exclude-limit 30 --no-auto-gen-timestamp`
|
3
|
-
# using RuboCop version 1.
|
3
|
+
# using RuboCop version 1.7.0.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
data/CHANGELOG.md
CHANGED
@@ -1,201 +1,122 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
-
## v2.0.
|
3
|
+
## v2.0.1 (Jan 06, 2021)
|
4
|
+
|
5
|
+
### Bugfix
|
6
|
+
|
7
|
+
* [#437](https://github.com/ryz310/rubocop_challenger/pull/437) Fix keyword argument expanding for Ruby 3.0 ([@ryz310](https://github.com/ryz310))
|
8
|
+
|
9
|
+
## v2.0.0 (Jan 04, 2021)
|
4
10
|
|
5
11
|
### Feature
|
6
12
|
|
13
|
+
* [#183](https://github.com/ryz310/rubocop_challenger/pull/183) Implement the flow that create a PR which re-generate ".rubocop_todo.yml" ([@ryz310](https://github.com/ryz310))
|
14
|
+
* [#187](https://github.com/ryz310/rubocop_challenger/pull/187) Bundle update rubocop ([@ryz310](https://github.com/ryz310))
|
15
|
+
* [#208](https://github.com/ryz310/rubocop_challenger/pull/208) Render links for release note and compare page ([@ryz310](https://github.com/ryz310))
|
16
|
+
* [#217](https://github.com/ryz310/rubocop_challenger/pull/217) Support auto gem config options ([@ryz310](https://github.com/ryz310))
|
17
|
+
* [#250](https://github.com/ryz310/rubocop_challenger/pull/250) Add error reporting feature ([@ryz310](https://github.com/ryz310))
|
18
|
+
* [#253](https://github.com/ryz310/rubocop_challenger/pull/253) Add information of the rubocop challenge ([@ryz310](https://github.com/ryz310))
|
7
19
|
* [#288](https://github.com/ryz310/rubocop_challenger/pull/288) Support ruby 2.7 ([@ryz310](https://github.com/ryz310))
|
8
20
|
* [#362](https://github.com/ryz310/rubocop_challenger/pull/362) Use rubocop auto correct all ([@ryz310](https://github.com/ryz310))
|
9
21
|
* [#398](https://github.com/ryz310/rubocop_challenger/pull/398) Add auto correct safe option ([@ryz310](https://github.com/ryz310))
|
22
|
+
* [#432](https://github.com/ryz310/rubocop_challenger/pull/432) Support ruby 3.0 ([@ryz310](https://github.com/ryz310))
|
10
23
|
|
11
24
|
### Bugfix
|
12
25
|
|
26
|
+
* [#212](https://github.com/ryz310/rubocop_challenger/pull/212) Fix the version of pr_comet ([@ryz310](https://github.com/ryz310))
|
27
|
+
* [#231](https://github.com/ryz310/rubocop_challenger/pull/231) Fix the way of requirements loading for optional dependencies ([@ryz310](https://github.com/ryz310))
|
28
|
+
* [#238](https://github.com/ryz310/rubocop_challenger/pull/238) Fix/load error of the updated gems ([@ryz310](https://github.com/ryz310))
|
13
29
|
* [#363](https://github.com/ryz310/rubocop_challenger/pull/363) Require rubocop-rails gem ([@ryz310](https://github.com/ryz310))
|
14
30
|
|
15
31
|
### Breaking Change
|
16
32
|
|
33
|
+
* [#180](https://github.com/ryz310/rubocop_challenger/pull/180) Farewell ruby 2.3 ([@ryz310](https://github.com/ryz310))
|
34
|
+
* [#184](https://github.com/ryz310/rubocop_challenger/pull/184) Remove base branch option ([@ryz310](https://github.com/ryz310))
|
17
35
|
* [#396](https://github.com/ryz310/rubocop_challenger/pull/396) End of support for Ruby 2.4 ([@ryz310](https://github.com/ryz310))
|
18
36
|
|
19
|
-
###
|
37
|
+
### Rubocop Challenge
|
20
38
|
|
21
|
-
* [#
|
22
|
-
* [#
|
23
|
-
* [#
|
24
|
-
* [#290](https://github.com/ryz310/rubocop_challenger/pull/290) Bump pry-byebug from 3.7.0 to 3.8.0 ([@ryz310](https://github.com/ryz310))
|
25
|
-
* [#294](https://github.com/ryz310/rubocop_challenger/pull/294) Update ruby-orbs orb to v1.6.0 ([@ryz310](https://github.com/ryz310))
|
26
|
-
* [#303](https://github.com/ryz310/rubocop_challenger/pull/303) ryz310/dependabot/bundler/pry-byebug-3.9.0 ([@ryz310](https://github.com/ryz310))
|
27
|
-
* [#304](https://github.com/ryz310/rubocop_challenger/pull/304) Edit dependabot configuration ([@ryz310](https://github.com/ryz310))
|
28
|
-
* [#310](https://github.com/ryz310/rubocop_challenger/pull/310) Bump yard from 0.9.24 to 0.9.25 ([@ryz310](https://github.com/ryz310))
|
39
|
+
* [#228](https://github.com/ryz310/rubocop_challenger/pull/228) Style/WordArray-20190625233039 ([@ryz310](https://github.com/ryz310))
|
40
|
+
* [#235](https://github.com/ryz310/rubocop_challenger/pull/235) Performance/RegexpMatch-20190729233033 ([@ryz310](https://github.com/ryz310))
|
41
|
+
* [#236](https://github.com/ryz310/rubocop_challenger/pull/236) Layout/SpaceAroundOperators-20190731233025 ([@ryz310](https://github.com/ryz310))
|
29
42
|
* [#317](https://github.com/ryz310/rubocop_challenger/pull/317) Performance/StartWith-20200523233027 ([@ryz310](https://github.com/ryz310))
|
30
|
-
* [#
|
31
|
-
* [#365](https://github.com/ryz310/rubocop_challenger/pull/365) ryz310/dependabot/bundler/rubocop-rspec-1.44.1 ([@ryz310](https://github.com/ryz310))
|
32
|
-
* [#376](https://github.com/ryz310/rubocop_challenger/pull/376) ryz310/dependabot/bundler/rspec-3.10.0 ([@ryz310](https://github.com/ryz310))
|
33
|
-
* [#386](https://github.com/ryz310/rubocop_challenger/pull/386) Re-generate .rubocop_todo.yml with RuboCop v1.2.0 ([@ryz310](https://github.com/ryz310))
|
34
|
-
* [#392](https://github.com/ryz310/rubocop_challenger/pull/392) ryz310/dependabot/bundler/rubocop-1.3.0 ([@ryz310](https://github.com/ryz310))
|
35
|
-
|
36
|
-
## 2.0.0.pre10 (Oct 18, 2019)
|
37
|
-
|
38
|
-
### Feature
|
39
|
-
|
40
|
-
* Add information of the rubocop challenge ([#253](https://github.com/ryz310/rubocop_challenger/pull/253))
|
41
|
-
|
42
|
-
### Misc
|
43
|
-
|
44
|
-
* ryz310/dependabot/bundler/rspec-3.9.0 ([#254](https://github.com/ryz310/rubocop_challenger/pull/254))
|
45
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.75.1 ([#255](https://github.com/ryz310/rubocop_challenger/pull/255))
|
46
|
-
|
47
|
-
## v2.0.0.pre9 (Oct 3, 2019)
|
48
|
-
|
49
|
-
### Feature
|
43
|
+
* [#427](https://github.com/ryz310/rubocop_challenger/pull/427) Re-generate .rubocop_todo.yml with RuboCop v1.7.0 ([@ryz310](https://github.com/ryz310))
|
50
44
|
|
51
|
-
|
45
|
+
### Dependabot
|
52
46
|
|
53
|
-
|
54
|
-
|
55
|
-
* ryz310/dependabot/bundler/
|
56
|
-
*
|
57
|
-
* ryz310/dependabot/bundler/
|
58
|
-
* ryz310/dependabot/bundler/
|
59
|
-
* ryz310/dependabot/bundler/
|
60
|
-
* ryz310/dependabot/bundler/rubocop-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
* Fix/load error of the updated gems ([#238](https://ryz310@github.com/ryz310/rubocop_challenger/pull/238))
|
67
|
-
|
68
|
-
### Misc
|
69
|
-
|
70
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.73.0 ([#234](https://ryz310@github.com/ryz310/rubocop_challenger/pull/234))
|
71
|
-
* Performance/RegexpMatch-20190729233033 ([#235](https://ryz310@github.com/ryz310/rubocop_challenger/pull/235))
|
72
|
-
* Layout/SpaceAroundOperators-20190731233025 ([#236](https://ryz310@github.com/ryz310/rubocop_challenger/pull/236))
|
73
|
-
* Introduce gem comet ([#239](https://ryz310@github.com/ryz310/rubocop_challenger/pull/239))
|
74
|
-
|
75
|
-
## v2.0.0.pre7 (Jul 9, 2019)
|
76
|
-
|
77
|
-
### Bugfix
|
78
|
-
|
79
|
-
* Fix the way of requirements loading for optional dependencies ([#231](https://ryz310@github.com/ryz310/rubocop_challenger/pull/231))
|
47
|
+
* [#242](https://github.com/ryz310/rubocop_challenger/pull/242) ryz310/dependabot/bundler/rake-tw-13.0 ([@ryz310](https://github.com/ryz310))
|
48
|
+
* [#244](https://github.com/ryz310/rubocop_challenger/pull/244) ryz310/dependabot/bundler/simplecov-0.17.1 ([@ryz310](https://github.com/ryz310))
|
49
|
+
* [#245](https://github.com/ryz310/rubocop_challenger/pull/245) ryz310/dependabot/bundler/pr_comet-gte-0.2-and-lt-0.4 ([@ryz310](https://github.com/ryz310))
|
50
|
+
* [#271](https://github.com/ryz310/rubocop_challenger/pull/271) Bump thor from 1.0.0 to 1.0.1 ([@ryz310](https://github.com/ryz310))
|
51
|
+
* [#303](https://github.com/ryz310/rubocop_challenger/pull/303) ryz310/dependabot/bundler/pry-byebug-3.9.0 ([@ryz310](https://github.com/ryz310))
|
52
|
+
* [#376](https://github.com/ryz310/rubocop_challenger/pull/376) ryz310/dependabot/bundler/rspec-3.10.0 ([@ryz310](https://github.com/ryz310))
|
53
|
+
* [#414](https://github.com/ryz310/rubocop_challenger/pull/414) ryz310/dependabot/bundler/rubocop-rspec-2.0.1 ([@ryz310](https://github.com/ryz310))
|
54
|
+
* [#421](https://github.com/ryz310/rubocop_challenger/pull/421) ryz310/dependabot/bundler/rubocop-1.6.1 ([@ryz310](https://github.com/ryz310))
|
55
|
+
* [#423](https://github.com/ryz310/rubocop_challenger/pull/423) ryz310/dependabot/bundler/rubocop-rails-2.9.1 ([@ryz310](https://github.com/ryz310))
|
56
|
+
* [#426](https://github.com/ryz310/rubocop_challenger/pull/426) ryz310/dependabot/bundler/rake-13.0.3 ([@ryz310](https://github.com/ryz310))
|
57
|
+
* [#428](https://github.com/ryz310/rubocop_challenger/pull/428) ryz310/dependabot/bundler/yard-0.9.26 ([@ryz310](https://github.com/ryz310))
|
58
|
+
* [#431](https://github.com/ryz310/rubocop_challenger/pull/431) ryz310/dependabot/bundler/rubocop-performance-1.9.2 ([@ryz310](https://github.com/ryz310))
|
80
59
|
|
81
60
|
### Security
|
82
61
|
|
83
|
-
* Bump yard from 0.9.19 to 0.9.20 ([
|
84
|
-
|
85
|
-
### Misc
|
86
|
-
|
87
|
-
* Migrate circle ci version to 2.1 ([#227](https://ryz310@github.com/ryz310/rubocop_challenger/pull/227))
|
88
|
-
* Style/WordArray-20190625233039 ([#228](https://ryz310@github.com/ryz310/rubocop_challenger/pull/228))
|
89
|
-
|
90
|
-
## v2.0.0.pre6 (Jun 23, 2019)
|
91
|
-
|
92
|
-
### Feature
|
93
|
-
### Bugfix
|
94
|
-
### Breaking Change
|
95
|
-
### Misc
|
96
|
-
|
97
|
-
* Support base branch option ([#223](https://ryz310@github.com/ryz310/rubocop_challenger/pull/223))
|
98
|
-
|
99
|
-
## v2.0.0.pre5 (Jun 13, 2019)
|
100
|
-
|
101
|
-
### Feature
|
102
|
-
|
103
|
-
* Support auto gem config options ([#217](https://ryz310@github.com/ryz310/rubocop_challenger/pull/217))
|
62
|
+
* [#230](https://github.com/ryz310/rubocop_challenger/pull/230) Bump yard from 0.9.19 to 0.9.20 ([@ryz310](https://github.com/ryz310))
|
104
63
|
|
105
64
|
### Misc
|
106
65
|
|
107
|
-
*
|
108
|
-
*
|
109
|
-
*
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
*
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
* Render links for release note and compare page ([#208](https://ryz310@github.com/ryz310/rubocop_challenger/pull/208))
|
122
|
-
|
123
|
-
### Misc
|
124
|
-
|
125
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.68.0 ([#196](https://ryz310@github.com/ryz310/rubocop_challenger/pull/196))
|
126
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.68.1 ([#203](https://ryz310@github.com/ryz310/rubocop_challenger/pull/203))
|
127
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.69.0 ([#204](https://ryz310@github.com/ryz310/rubocop_challenger/pull/204))
|
128
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.70.0 ([#206](https://ryz310@github.com/ryz310/rubocop_challenger/pull/206))
|
129
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.71.0 ([#207](https://ryz310@github.com/ryz310/rubocop_challenger/pull/207))
|
130
|
-
* Release 2.0.0.pre3 ([#211](https://ryz310@github.com/ryz310/rubocop_challenger/pull/211))
|
131
|
-
|
132
|
-
## v2.0.0.pre2 (Apr 9, 2019)
|
133
|
-
|
134
|
-
### Misc
|
135
|
-
|
136
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.67.1 ([#190](https://ryz310@github.com/ryz310/rubocop_challenger/pull/190))
|
137
|
-
* Re-generate .rubocop_todo.yml with RuboCop v0.67.2 ([#191](https://ryz310@github.com/ryz310/rubocop_challenger/pull/191))
|
138
|
-
* Extract with pr comet ([#192](https://ryz310@github.com/ryz310/rubocop_challenger/pull/192))
|
139
|
-
|
140
|
-
## v2.0.0.pre (Mar 31, 2019)
|
141
|
-
|
142
|
-
### Feature
|
143
|
-
|
144
|
-
* Implement the flow that create a PR which re-generate ".rubocop_todo.yml" ([#183](https://ryz310@github.com/ryz310/rubocop_challenger/pull/183))
|
145
|
-
* Bundle update rubocop ([#187](https://ryz310@github.com/ryz310/rubocop_challenger/pull/187))
|
146
|
-
|
147
|
-
### Bugfix
|
148
|
-
### Breaking Change
|
149
|
-
|
150
|
-
* Farewell ruby 2.3 ([#180](https://ryz310@github.com/ryz310/rubocop_challenger/pull/180))
|
151
|
-
* Remove base branch option ([#184](https://ryz310@github.com/ryz310/rubocop_challenger/pull/184))
|
152
|
-
|
153
|
-
### Misc
|
154
|
-
|
155
|
-
* Use #abort instead of #puts and #exit! ([#178](https://ryz310@github.com/ryz310/rubocop_challenger/pull/178))
|
156
|
-
* Remove waffle.io badge ([#181](https://ryz310@github.com/ryz310/rubocop_challenger/pull/181))
|
157
|
-
* Improve code coverage and fix implements ([#185](https://ryz310@github.com/ryz310/rubocop_challenger/pull/185))
|
158
|
-
* Use #abort instead of #exit! ([#186](https://ryz310@github.com/ryz310/rubocop_challenger/pull/186))
|
66
|
+
* [#178](https://github.com/ryz310/rubocop_challenger/pull/178) Use #abort instead of #puts and #exit! ([@ryz310](https://github.com/ryz310))
|
67
|
+
* [#181](https://github.com/ryz310/rubocop_challenger/pull/181) Remove waffle.io badge ([@ryz310](https://github.com/ryz310))
|
68
|
+
* [#185](https://github.com/ryz310/rubocop_challenger/pull/185) Improve code coverage and fix implements ([@ryz310](https://github.com/ryz310))
|
69
|
+
* [#186](https://github.com/ryz310/rubocop_challenger/pull/186) Use #abort instead of #exit! ([@ryz310](https://github.com/ryz310))
|
70
|
+
* [#192](https://github.com/ryz310/rubocop_challenger/pull/192) Extract with pr comet ([@ryz310](https://github.com/ryz310))
|
71
|
+
* [#216](https://github.com/ryz310/rubocop_challenger/pull/216) Use rainbow gem ([@ryz310](https://github.com/ryz310))
|
72
|
+
* [#218](https://github.com/ryz310/rubocop_challenger/pull/218) Add pull request to GitHub project on execute ([@ryz310](https://github.com/ryz310))
|
73
|
+
* [#219](https://github.com/ryz310/rubocop_challenger/pull/219) Add auto updating target gems ([@ryz310](https://github.com/ryz310))
|
74
|
+
* [#223](https://github.com/ryz310/rubocop_challenger/pull/223) Support base branch option ([@ryz310](https://github.com/ryz310))
|
75
|
+
* [#227](https://github.com/ryz310/rubocop_challenger/pull/227) Migrate circle ci version to 2.1 ([@ryz310](https://github.com/ryz310))
|
76
|
+
* [#239](https://github.com/ryz310/rubocop_challenger/pull/239) Introduce gem comet ([@ryz310](https://github.com/ryz310))
|
77
|
+
* [#294](https://github.com/ryz310/rubocop_challenger/pull/294) Update ruby-orbs orb to v1.6.0 ([@ryz310](https://github.com/ryz310))
|
78
|
+
* [#304](https://github.com/ryz310/rubocop_challenger/pull/304) Edit dependabot configuration ([@ryz310](https://github.com/ryz310))
|
79
|
+
* [#433](https://github.com/ryz310/rubocop_challenger/pull/433) Update `pr_comet` ([@ryz310](https://github.com/ryz310))
|
159
80
|
|
160
81
|
## v1.2.0 (Feb 27, 2019)
|
161
82
|
|
162
83
|
### Feature
|
163
84
|
|
164
|
-
* Challenge incompleted list ([#170](https://
|
85
|
+
* Challenge incompleted list ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
|
165
86
|
|
166
87
|
### Bugfix
|
167
88
|
|
168
|
-
* Fix exit code when no more auto-correctable rule ([#175](https://
|
89
|
+
* Fix exit code when no more auto-correctable rule ([#175](https://github.com/ryz310/rubocop_challenger/pull/175))
|
169
90
|
|
170
91
|
### Breaking Change
|
171
92
|
|
172
|
-
* Remove "regenerate-rubocop-todo" option ([#170](https://
|
93
|
+
* Remove "regenerate-rubocop-todo" option ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
|
173
94
|
|
174
95
|
## v1.1.2 (Feb 21, 2019)
|
175
96
|
|
176
97
|
### Feature
|
177
98
|
|
178
|
-
* Re-generate .rubocop_todo.yml on pre-challenge ([#169](https://
|
99
|
+
* Re-generate .rubocop_todo.yml on pre-challenge ([#169](https://github.com/ryz310/rubocop_challenger/pull/169))
|
179
100
|
|
180
101
|
## v1.1.1 (Jan 17, 2019)
|
181
102
|
|
182
103
|
### Bugfix
|
183
104
|
|
184
|
-
* Fix encountering name error when finding a cop class by cop name ([#164](https://
|
105
|
+
* Fix encountering name error when finding a cop class by cop name ([#164](https://github.com/ryz310/rubocop_challenger/pull/164))
|
185
106
|
|
186
107
|
### Misc
|
187
108
|
|
188
|
-
* Configure Renovate ([#162](https://
|
109
|
+
* Configure Renovate ([#162](https://github.com/ryz310/rubocop_challenger/pull/162))
|
189
110
|
|
190
111
|
## v1.1.0 (Dec 29, 2018)
|
191
112
|
|
192
113
|
### Feature
|
193
114
|
|
194
|
-
* Support ruby 2.6 ([#156](https://
|
115
|
+
* Support ruby 2.6 ([#156](https://github.com/ryz310/rubocop_challenger/pull/156))
|
195
116
|
|
196
117
|
### Misc
|
197
118
|
|
198
|
-
* Change emoji on the commit message ([#158](https://
|
119
|
+
* Change emoji on the commit message ([#158](https://github.com/ryz310/rubocop_challenger/pull/158))
|
199
120
|
|
200
121
|
## v1.0.0 (Dec 3, 2018)
|
201
122
|
|
@@ -205,41 +126,41 @@ Release v1.0.0 :tada:
|
|
205
126
|
|
206
127
|
### Security
|
207
128
|
|
208
|
-
* Add quiet option on git push command ([#149](https://
|
129
|
+
* Add quiet option on git push command ([#149](https://github.com/ryz310/rubocop_challenger/pull/149))
|
209
130
|
|
210
131
|
### Misc
|
211
132
|
|
212
|
-
* Add yard testing flow ([#150](https://
|
213
|
-
* Add jailbreak script ([#151](https://
|
133
|
+
* Add yard testing flow ([#150](https://github.com/ryz310/rubocop_challenger/pull/150))
|
134
|
+
* Add jailbreak script ([#151](https://github.com/ryz310/rubocop_challenger/pull/151))
|
214
135
|
|
215
136
|
## v1.0.0.pre3 (Nov 17, 2018)
|
216
137
|
|
217
138
|
### Feature
|
218
139
|
|
219
|
-
* Output the result in the execution ([#139](https://
|
220
|
-
* Colorize error log ([#145](https://
|
140
|
+
* Output the result in the execution ([#139](https://github.com/ryz310/rubocop_challenger/pull/139))
|
141
|
+
* Colorize error log ([#145](https://github.com/ryz310/rubocop_challenger/pull/145))
|
221
142
|
|
222
143
|
### Bugfix
|
223
144
|
|
224
|
-
* Filter access token in the command logging ([#144](https://
|
145
|
+
* Filter access token in the command logging ([#144](https://github.com/ryz310/rubocop_challenger/pull/144))
|
225
146
|
|
226
147
|
## v1.0.0.pre2 (Nov 15, 2018)
|
227
148
|
|
228
149
|
### Feature
|
229
150
|
|
230
|
-
* Support private repository ([#132](https://
|
231
|
-
* Support old git version ([#133](https://
|
151
|
+
* Support private repository ([#132](https://github.com/ryz310/rubocop_challenger/pull/132))
|
152
|
+
* Support old git version ([#133](https://github.com/ryz310/rubocop_challenger/pull/133))
|
232
153
|
|
233
154
|
### Misc
|
234
155
|
|
235
|
-
* Add Github::Client#add_labels spec ([#131](https://
|
236
|
-
* Remove a unnecessary option ([#134](https://
|
156
|
+
* Add Github::Client#add_labels spec ([#131](https://github.com/ryz310/rubocop_challenger/pull/131))
|
157
|
+
* Remove a unnecessary option ([#134](https://github.com/ryz310/rubocop_challenger/pull/134))
|
237
158
|
|
238
159
|
## v1.0.0.pre (Nov 13, 2018)
|
239
160
|
|
240
161
|
### Feature
|
241
162
|
|
242
|
-
* Use octokit ([#121](https://
|
163
|
+
* Use octokit ([#121](https://github.com/ryz310/rubocop_challenger/pull/121))
|
243
164
|
|
244
165
|
### Breaking Change
|
245
166
|
|
@@ -247,118 +168,118 @@ Release v1.0.0 :tada:
|
|
247
168
|
|
248
169
|
### Misc
|
249
170
|
|
250
|
-
* Modify gem version validator ([#127](https://
|
171
|
+
* Modify gem version validator ([#127](https://github.com/ryz310/rubocop_challenger/pull/127))
|
251
172
|
|
252
173
|
## v0.5.2 (Nov 4, 2018)
|
253
174
|
|
254
175
|
### Misc
|
255
176
|
|
256
|
-
* Install code climate ([#116](https://
|
257
|
-
* Fix coveralls badge URL ([#117](https://
|
258
|
-
* Uninstall coveralls ([#118](https://
|
177
|
+
* Install code climate ([#116](https://github.com/ryz310/rubocop_challenger/pull/116))
|
178
|
+
* Fix coveralls badge URL ([#117](https://github.com/ryz310/rubocop_challenger/pull/117))
|
179
|
+
* Uninstall coveralls ([#118](https://github.com/ryz310/rubocop_challenger/pull/118))
|
259
180
|
|
260
181
|
## v0.5.1 (Nov 1, 2018)
|
261
182
|
|
262
183
|
### Misc
|
263
184
|
|
264
|
-
* Style/MutableConstant at Tue Oct 30 23:30:33 UTC 2018 ([#106](https://
|
265
|
-
* Install coveralls ([#107](https://
|
266
|
-
* Definition of Metrics/BlockLength ([#109](https://
|
267
|
-
* Fix offense of RSpec/ExampleLength ([#110](https://
|
268
|
-
* Fix offense of Style/Documentation ([#111](https://
|
269
|
-
* Fix offense of Metrics/LineLength ([#112](https://
|
270
|
-
* Fix that testing target is wrong ([#113](https://
|
185
|
+
* Style/MutableConstant at Tue Oct 30 23:30:33 UTC 2018 ([#106](https://github.com/ryz310/rubocop_challenger/pull/106))
|
186
|
+
* Install coveralls ([#107](https://github.com/ryz310/rubocop_challenger/pull/107))
|
187
|
+
* Definition of Metrics/BlockLength ([#109](https://github.com/ryz310/rubocop_challenger/pull/109))
|
188
|
+
* Fix offense of RSpec/ExampleLength ([#110](https://github.com/ryz310/rubocop_challenger/pull/110))
|
189
|
+
* Fix offense of Style/Documentation ([#111](https://github.com/ryz310/rubocop_challenger/pull/111))
|
190
|
+
* Fix offense of Metrics/LineLength ([#112](https://github.com/ryz310/rubocop_challenger/pull/112))
|
191
|
+
* Fix that testing target is wrong ([#113](https://github.com/ryz310/rubocop_challenger/pull/113))
|
271
192
|
|
272
193
|
## v0.5.0 (Oct 30, 2018)
|
273
194
|
|
274
195
|
### Feature
|
275
196
|
|
276
|
-
* Use bundle exec ([#100](https://
|
197
|
+
* Use bundle exec ([#100](https://github.com/ryz310/rubocop_challenger/pull/100))
|
277
198
|
|
278
199
|
### Breaking Change
|
279
200
|
|
280
|
-
* Return example name ([#101](https://
|
201
|
+
* Return example name ([#101](https://github.com/ryz310/rubocop_challenger/pull/101))
|
281
202
|
|
282
203
|
### Misc
|
283
204
|
|
284
|
-
* Layout/AlignHash at Sun Oct 28 23:30:20 UTC 2018 ([#97](https://
|
285
|
-
* Add Rubocop Challenge example to the README.md ([#98](https://
|
286
|
-
* Update bundle when create release PR ([#103](https://
|
205
|
+
* Layout/AlignHash at Sun Oct 28 23:30:20 UTC 2018 ([#97](https://github.com/ryz310/rubocop_challenger/pull/97))
|
206
|
+
* Add Rubocop Challenge example to the README.md ([#98](https://github.com/ryz310/rubocop_challenger/pull/98))
|
207
|
+
* Update bundle when create release PR ([#103](https://github.com/ryz310/rubocop_challenger/pull/103))
|
287
208
|
|
288
209
|
## v0.4.1 (Oct 28, 2018)
|
289
210
|
|
290
211
|
### Bugfix
|
291
212
|
|
292
|
-
* Return status code 0 when exists no auto-correctable cop ([#91](https://
|
293
|
-
* Fix rubocop version mismatch ([#92](https://
|
213
|
+
* Return status code 0 when exists no auto-correctable cop ([#91](https://github.com/ryz310/rubocop_challenger/pull/91))
|
214
|
+
* Fix rubocop version mismatch ([#92](https://github.com/ryz310/rubocop_challenger/pull/92))
|
294
215
|
|
295
216
|
### Misc
|
296
217
|
|
297
|
-
* Style/RedundantSelf at Fri Oct 26 05:58:13 UTC 2018 ([#89](https://
|
298
|
-
* Layout/SpaceInsideBlockBraces at Sat Oct 27 23:30:21 UTC 2018 ([#93](https://
|
218
|
+
* Style/RedundantSelf at Fri Oct 26 05:58:13 UTC 2018 ([#89](https://github.com/ryz310/rubocop_challenger/pull/89))
|
219
|
+
* Layout/SpaceInsideBlockBraces at Sat Oct 27 23:30:21 UTC 2018 ([#93](https://github.com/ryz310/rubocop_challenger/pull/93))
|
299
220
|
|
300
221
|
## v0.4.0 (Oct 26, 2018)
|
301
222
|
|
302
223
|
### Feature
|
303
224
|
|
304
|
-
* Generate document from yardoc ([#86](https://
|
225
|
+
* Generate document from yardoc ([#86](https://github.com/ryz310/rubocop_challenger/pull/86))
|
305
226
|
|
306
227
|
### Misc
|
307
228
|
|
308
|
-
* Rake/create pr for version up ([#81](https://
|
309
|
-
* Style/RescueModifier at Wed Oct 24 23:30:21 UTC 2018 ([#82](https://
|
229
|
+
* Rake/create pr for version up ([#81](https://github.com/ryz310/rubocop_challenger/pull/81))
|
230
|
+
* Style/RescueModifier at Wed Oct 24 23:30:21 UTC 2018 ([#82](https://github.com/ryz310/rubocop_challenger/pull/82))
|
310
231
|
|
311
232
|
## v0.3.1 (Oct 23, 2018)
|
312
233
|
|
313
234
|
### Feature
|
314
235
|
|
315
|
-
* Modify default template ([#73](https://
|
236
|
+
* Modify default template ([#73](https://github.com/ryz310/rubocop_challenger/pull/73))
|
316
237
|
|
317
238
|
|
318
239
|
## v0.3.0 (Oct 23, 2018)
|
319
240
|
|
320
241
|
### Feature
|
321
242
|
|
322
|
-
* Add labels option ([#67](https://
|
323
|
-
* Add template option ([#70](https://
|
243
|
+
* Add labels option ([#67](https://github.com/ryz310/rubocop_challenger/pull/67))
|
244
|
+
* Add template option ([#70](https://github.com/ryz310/rubocop_challenger/pull/70))
|
324
245
|
|
325
246
|
### Misc
|
326
247
|
|
327
|
-
* Run rubocop challenge after release ([#68](https://
|
248
|
+
* Run rubocop challenge after release ([#68](https://github.com/ryz310/rubocop_challenger/pull/68))
|
328
249
|
|
329
250
|
## v0.2.1 (Oct 23, 2019)
|
330
251
|
|
331
252
|
### Bugfix
|
332
253
|
|
333
|
-
* Fix default PR template file path ([#64](https://
|
254
|
+
* Fix default PR template file path ([#64](https://github.com/ryz310/rubocop_challenger/pull/64))
|
334
255
|
|
335
256
|
## v0.2.0 (Oct 23, 2018)
|
336
257
|
|
337
258
|
### Feature
|
338
259
|
|
339
|
-
* Generate pr template ([#50](https://
|
340
|
-
* Add no-commit option ([#53](https://
|
341
|
-
* Return status code 1 when an error occurs ([#56](https://
|
342
|
-
* Add option which regenerate rubocop todo file ([#59](https://
|
260
|
+
* Generate pr template ([#50](https://github.com/ryz310/rubocop_challenger/pull/50))
|
261
|
+
* Add no-commit option ([#53](https://github.com/ryz310/rubocop_challenger/pull/53))
|
262
|
+
* Return status code 1 when an error occurs ([#56](https://github.com/ryz310/rubocop_challenger/pull/56))
|
263
|
+
* Add option which regenerate rubocop todo file ([#59](https://github.com/ryz310/rubocop_challenger/pull/59))
|
343
264
|
|
344
265
|
### Misc
|
345
266
|
|
346
|
-
* Add access token description ([#48](https://
|
347
|
-
* Add no document option to gem install command ([#51](https://
|
267
|
+
* Add access token description ([#48](https://github.com/ryz310/rubocop_challenger/pull/48))
|
268
|
+
* Add no document option to gem install command ([#51](https://github.com/ryz310/rubocop_challenger/pull/51))
|
348
269
|
|
349
270
|
## v0.1.3 (Oct 21, 2018)
|
350
271
|
|
351
272
|
### Misc
|
352
273
|
|
353
|
-
* Style/TrailingCommaInArrayLiteral at Fri Oct 19 23:30:18 UTC 2018 ([#34](https://
|
354
|
-
* Update readme ([#36](https://
|
355
|
-
* Add challenge class spec ([#42](https://
|
274
|
+
* Style/TrailingCommaInArrayLiteral at Fri Oct 19 23:30:18 UTC 2018 ([#34](https://github.com/ryz310/rubocop_challenger/pull/34))
|
275
|
+
* Update readme ([#36](https://github.com/ryz310/rubocop_challenger/pull/36))
|
276
|
+
* Add challenge class spec ([#42](https://github.com/ryz310/rubocop_challenger/pull/42))
|
356
277
|
|
357
278
|
## v0.1.2 (Oct 19, 2018)
|
358
279
|
|
359
280
|
### Misc
|
360
281
|
|
361
|
-
* Install from gem ([#28](https://
|
282
|
+
* Install from gem ([#28](https://github.com/ryz310/rubocop_challenger/pull/28))
|
362
283
|
|
363
284
|
## v0.1.1 (Oct 19, 2018)
|
364
285
|
|
data/Gemfile.lock
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rubocop_challenger (2.0.
|
5
|
-
pr_comet (
|
4
|
+
rubocop_challenger (2.0.1)
|
5
|
+
pr_comet (~> 0.4.0)
|
6
6
|
rainbow
|
7
7
|
rubocop (>= 0.87)
|
8
8
|
rubocop-performance
|
9
9
|
rubocop-rails
|
10
|
+
rubocop-rake
|
10
11
|
rubocop-rspec
|
11
12
|
thor
|
12
13
|
yard
|
@@ -14,12 +15,12 @@ PATH
|
|
14
15
|
GEM
|
15
16
|
remote: https://rubygems.org/
|
16
17
|
specs:
|
17
|
-
activesupport (6.0
|
18
|
+
activesupport (6.1.0)
|
18
19
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
19
|
-
i18n (>=
|
20
|
-
minitest (
|
21
|
-
tzinfo (~>
|
22
|
-
zeitwerk (~> 2.
|
20
|
+
i18n (>= 1.6, < 2)
|
21
|
+
minitest (>= 5.1)
|
22
|
+
tzinfo (~> 2.0)
|
23
|
+
zeitwerk (~> 2.3)
|
23
24
|
addressable (2.7.0)
|
24
25
|
public_suffix (>= 2.0.2, < 5.0)
|
25
26
|
ast (2.4.1)
|
@@ -27,23 +28,25 @@ GEM
|
|
27
28
|
coderay (1.1.3)
|
28
29
|
concurrent-ruby (1.1.7)
|
29
30
|
diff-lcs (1.4.4)
|
30
|
-
docile (1.3.
|
31
|
-
faraday (1.
|
31
|
+
docile (1.3.4)
|
32
|
+
faraday (1.3.0)
|
33
|
+
faraday-net_http (~> 1.0)
|
32
34
|
multipart-post (>= 1.2, < 3)
|
33
35
|
ruby2_keywords
|
34
|
-
|
36
|
+
faraday-net_http (1.0.0)
|
37
|
+
i18n (1.8.7)
|
35
38
|
concurrent-ruby (~> 1.0)
|
36
|
-
json (2.
|
39
|
+
json (2.5.1)
|
37
40
|
method_source (1.0.0)
|
38
41
|
minitest (5.14.2)
|
39
42
|
multipart-post (2.1.1)
|
40
|
-
octokit (4.
|
43
|
+
octokit (4.20.0)
|
41
44
|
faraday (>= 0.9)
|
42
45
|
sawyer (~> 0.8.0, >= 0.5.3)
|
43
|
-
parallel (1.20.
|
44
|
-
parser (
|
46
|
+
parallel (1.20.1)
|
47
|
+
parser (3.0.0.0)
|
45
48
|
ast (~> 2.4.1)
|
46
|
-
pr_comet (0.
|
49
|
+
pr_comet (0.4.0)
|
47
50
|
octokit
|
48
51
|
rainbow
|
49
52
|
pry (0.13.1)
|
@@ -55,46 +58,48 @@ GEM
|
|
55
58
|
public_suffix (4.0.6)
|
56
59
|
rack (2.2.3)
|
57
60
|
rainbow (3.0.0)
|
58
|
-
rake (13.0.
|
59
|
-
regexp_parser (
|
61
|
+
rake (13.0.3)
|
62
|
+
regexp_parser (2.0.3)
|
60
63
|
rexml (3.2.4)
|
61
64
|
rspec (3.10.0)
|
62
65
|
rspec-core (~> 3.10.0)
|
63
66
|
rspec-expectations (~> 3.10.0)
|
64
67
|
rspec-mocks (~> 3.10.0)
|
65
|
-
rspec-core (3.10.
|
68
|
+
rspec-core (3.10.1)
|
66
69
|
rspec-support (~> 3.10.0)
|
67
|
-
rspec-expectations (3.10.
|
70
|
+
rspec-expectations (3.10.1)
|
68
71
|
diff-lcs (>= 1.2.0, < 2.0)
|
69
72
|
rspec-support (~> 3.10.0)
|
70
|
-
rspec-mocks (3.10.
|
73
|
+
rspec-mocks (3.10.1)
|
71
74
|
diff-lcs (>= 1.2.0, < 2.0)
|
72
75
|
rspec-support (~> 3.10.0)
|
73
|
-
rspec-support (3.10.
|
76
|
+
rspec-support (3.10.1)
|
74
77
|
rspec_junit_formatter (0.4.1)
|
75
78
|
rspec-core (>= 2, < 4, != 2.12.0)
|
76
|
-
rubocop (1.
|
79
|
+
rubocop (1.7.0)
|
77
80
|
parallel (~> 1.10)
|
78
81
|
parser (>= 2.7.1.5)
|
79
82
|
rainbow (>= 2.2.2, < 4.0)
|
80
|
-
regexp_parser (>= 1.8)
|
83
|
+
regexp_parser (>= 1.8, < 3.0)
|
81
84
|
rexml
|
82
|
-
rubocop-ast (>= 1.
|
85
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
83
86
|
ruby-progressbar (~> 1.7)
|
84
87
|
unicode-display_width (>= 1.4.0, < 2.0)
|
85
|
-
rubocop-ast (1.
|
88
|
+
rubocop-ast (1.4.0)
|
86
89
|
parser (>= 2.7.1.5)
|
87
|
-
rubocop-performance (1.
|
88
|
-
rubocop (>= 0.
|
90
|
+
rubocop-performance (1.9.2)
|
91
|
+
rubocop (>= 0.90.0, < 2.0)
|
89
92
|
rubocop-ast (>= 0.4.0)
|
90
|
-
rubocop-rails (2.
|
93
|
+
rubocop-rails (2.9.1)
|
91
94
|
activesupport (>= 4.2.0)
|
92
95
|
rack (>= 1.1)
|
93
|
-
rubocop (>= 0.
|
94
|
-
rubocop-
|
96
|
+
rubocop (>= 0.90.0, < 2.0)
|
97
|
+
rubocop-rake (0.5.1)
|
98
|
+
rubocop
|
99
|
+
rubocop-rspec (2.1.0)
|
95
100
|
rubocop (~> 1.0)
|
96
101
|
rubocop-ast (>= 1.1.0)
|
97
|
-
ruby-progressbar (1.
|
102
|
+
ruby-progressbar (1.11.0)
|
98
103
|
ruby2_keywords (0.0.2)
|
99
104
|
sawyer (0.8.2)
|
100
105
|
addressable (>= 2.3.5)
|
@@ -105,12 +110,11 @@ GEM
|
|
105
110
|
simplecov-html (~> 0.10.0)
|
106
111
|
simplecov-html (0.10.2)
|
107
112
|
thor (1.0.1)
|
108
|
-
|
109
|
-
|
110
|
-
thread_safe (~> 0.1)
|
113
|
+
tzinfo (2.0.4)
|
114
|
+
concurrent-ruby (~> 1.0)
|
111
115
|
unicode-display_width (1.7.0)
|
112
|
-
yard (0.9.
|
113
|
-
zeitwerk (2.4.
|
116
|
+
yard (0.9.26)
|
117
|
+
zeitwerk (2.4.2)
|
114
118
|
|
115
119
|
PLATFORMS
|
116
120
|
ruby
|
@@ -122,7 +126,7 @@ DEPENDENCIES
|
|
122
126
|
rspec
|
123
127
|
rspec_junit_formatter
|
124
128
|
rubocop_challenger!
|
125
|
-
simplecov
|
129
|
+
simplecov (= 0.17.1)
|
126
130
|
|
127
131
|
BUNDLED WITH
|
128
|
-
2.
|
132
|
+
2.2.3
|
data/challenger.gemspec
CHANGED
@@ -24,11 +24,12 @@ Gem::Specification.new do |spec|
|
|
24
24
|
|
25
25
|
spec.required_ruby_version = '>= 2.5'
|
26
26
|
|
27
|
-
spec.add_runtime_dependency 'pr_comet', '
|
27
|
+
spec.add_runtime_dependency 'pr_comet', '~> 0.4.0'
|
28
28
|
spec.add_runtime_dependency 'rainbow'
|
29
29
|
spec.add_runtime_dependency 'rubocop', '>= 0.87'
|
30
30
|
spec.add_runtime_dependency 'rubocop-performance'
|
31
31
|
spec.add_runtime_dependency 'rubocop-rails'
|
32
|
+
spec.add_runtime_dependency 'rubocop-rake'
|
32
33
|
spec.add_runtime_dependency 'rubocop-rspec'
|
33
34
|
spec.add_runtime_dependency 'thor'
|
34
35
|
spec.add_runtime_dependency 'yard'
|
@@ -38,5 +39,5 @@ Gem::Specification.new do |spec|
|
|
38
39
|
spec.add_development_dependency 'rake', '~> 13.0'
|
39
40
|
spec.add_development_dependency 'rspec'
|
40
41
|
spec.add_development_dependency 'rspec_junit_formatter'
|
41
|
-
spec.add_development_dependency 'simplecov'
|
42
|
+
spec.add_development_dependency 'simplecov', '0.17.1'
|
42
43
|
end
|
data/lib/rubocop_challenger.rb
CHANGED
@@ -10,7 +10,7 @@ module RubocopChallenger
|
|
10
10
|
#
|
11
11
|
# @param gem_names [Array<String>] The target gem names
|
12
12
|
def update(*gem_names)
|
13
|
-
run('update', *gem_names.select
|
13
|
+
run('update', *gem_names.select { |gem_name| installed?(gem_name) })
|
14
14
|
end
|
15
15
|
|
16
16
|
# Checks the gem is installed
|
metadata
CHANGED
@@ -1,35 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop_challenger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ryosuke_sato
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pr_comet
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: '0.2'
|
20
|
-
- - "<"
|
17
|
+
- - "~>"
|
21
18
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
19
|
+
version: 0.4.0
|
23
20
|
type: :runtime
|
24
21
|
prerelease: false
|
25
22
|
version_requirements: !ruby/object:Gem::Requirement
|
26
23
|
requirements:
|
27
|
-
- - "
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '0.2'
|
30
|
-
- - "<"
|
24
|
+
- - "~>"
|
31
25
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
26
|
+
version: 0.4.0
|
33
27
|
- !ruby/object:Gem::Dependency
|
34
28
|
name: rainbow
|
35
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,6 +80,20 @@ dependencies:
|
|
86
80
|
- - ">="
|
87
81
|
- !ruby/object:Gem::Version
|
88
82
|
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rubocop-rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
89
97
|
- !ruby/object:Gem::Dependency
|
90
98
|
name: rubocop-rspec
|
91
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -202,16 +210,16 @@ dependencies:
|
|
202
210
|
name: simplecov
|
203
211
|
requirement: !ruby/object:Gem::Requirement
|
204
212
|
requirements:
|
205
|
-
- -
|
213
|
+
- - '='
|
206
214
|
- !ruby/object:Gem::Version
|
207
|
-
version:
|
215
|
+
version: 0.17.1
|
208
216
|
type: :development
|
209
217
|
prerelease: false
|
210
218
|
version_requirements: !ruby/object:Gem::Requirement
|
211
219
|
requirements:
|
212
|
-
- -
|
220
|
+
- - '='
|
213
221
|
- !ruby/object:Gem::Version
|
214
|
-
version:
|
222
|
+
version: 0.17.1
|
215
223
|
description: Make a clean your rubocop_todo.yml with CI
|
216
224
|
email:
|
217
225
|
- r-sato@feedforce.jp
|
@@ -280,11 +288,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
280
288
|
version: '2.5'
|
281
289
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
282
290
|
requirements:
|
283
|
-
- - "
|
291
|
+
- - ">="
|
284
292
|
- !ruby/object:Gem::Version
|
285
|
-
version:
|
293
|
+
version: '0'
|
286
294
|
requirements: []
|
287
|
-
rubygems_version: 3.
|
295
|
+
rubygems_version: 3.2.3
|
288
296
|
signing_key:
|
289
297
|
specification_version: 4
|
290
298
|
summary: Make a clean your rubocop_todo.yml with CI
|