rubocop_challenger 2.5.0 → 2.8.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/.circleci/config.yml +14 -14
- data/.rubocop.yml +4 -4
- data/.rubocop_todo.yml +1 -1
- data/CHANGELOG.md +198 -137
- data/Gemfile +0 -2
- data/Gemfile.lock +39 -62
- data/README.md +19 -16
- data/challenger.gemspec +2 -2
- data/images/{decrease_of_offence_codes.png → decrease_of_offense_codes.png} +0 -0
- data/lib/rubocop_challenger/bundler/command.rb +1 -1
- data/lib/rubocop_challenger/cli.rb +14 -10
- data/lib/rubocop_challenger/go.rb +20 -7
- data/lib/rubocop_challenger/rubocop/command.rb +3 -1
- data/lib/rubocop_challenger/rubocop/rule.rb +2 -1
- data/lib/rubocop_challenger/rubocop/todo_reader.rb +6 -5
- data/lib/rubocop_challenger/rubocop/yardoc.rb +1 -9
- data/lib/rubocop_challenger/version.rb +1 -1
- data/lib/templates/checklist.md.erb +2 -2
- data/lib/templates/default.md.erb +2 -2
- metadata +13 -7
data/CHANGELOG.md
CHANGED
|
@@ -1,202 +1,264 @@
|
|
|
1
1
|
# Change log
|
|
2
2
|
|
|
3
|
+
## v2.8.0 (May 30, 2022)
|
|
4
|
+
|
|
5
|
+
### Feature
|
|
6
|
+
|
|
7
|
+
- [#616](https://github.com/ryz310/rubocop_challenger/pull/616) Support `--no-offense-counts` option ([@ryz310](https://github.com/ryz310))
|
|
8
|
+
|
|
9
|
+
### Bugfix
|
|
10
|
+
|
|
11
|
+
- [#612](https://github.com/ryz310/rubocop_challenger/pull/612) Fix wrong usage of `Array#reject!`: this might return nil ([@r7kamura](https://github.com/r7kamura))
|
|
12
|
+
- [#625](https://github.com/ryz310/rubocop_challenger/pull/625) Use `--conservative` option on `bundle update` ([@ryz310](https://github.com/ryz310))
|
|
13
|
+
|
|
14
|
+
### Breaking Change
|
|
15
|
+
|
|
16
|
+
- [#615](https://github.com/ryz310/rubocop_challenger/pull/615) The end of ruby 2.6 support ([@ryz310](https://github.com/ryz310))
|
|
17
|
+
|
|
18
|
+
### Rubocop Challenge
|
|
19
|
+
|
|
20
|
+
- [#624](https://github.com/ryz310/rubocop_challenger/pull/624) Re-generate .rubocop_todo.yml with RuboCop v1.30.0 ([@ryz310](https://github.com/ryz310))
|
|
21
|
+
|
|
22
|
+
### Dependabot
|
|
23
|
+
|
|
24
|
+
- [#608](https://github.com/ryz310/rubocop_challenger/pull/608) Update pr_comet requirement from ~> 0.5.1 to >= 0.5.1, < 0.7.0 ([@ryz310](https://github.com/ryz310))
|
|
25
|
+
- [#610](https://github.com/ryz310/rubocop_challenger/pull/610) Bump activesupport from 6.1.5.1 to 6.1.6 ([@ryz310](https://github.com/ryz310))
|
|
26
|
+
|
|
27
|
+
### Misc
|
|
28
|
+
|
|
29
|
+
- [#614](https://github.com/ryz310/rubocop_challenger/pull/614) Tweak some words improved representation ([@ydah](https://github.com/ydah))
|
|
30
|
+
- [#619](https://github.com/ryz310/rubocop_challenger/pull/619) git mv ./images/decrease_of_offen{c,s}e_codes.png ([@r7kamura](https://github.com/r7kamura))
|
|
31
|
+
|
|
32
|
+
## v2.7.0 (May 08, 2022)
|
|
33
|
+
|
|
34
|
+
### Feature
|
|
35
|
+
|
|
36
|
+
- [#605](https://github.com/ryz310/rubocop_challenger/pull/605) Support ruby 3.1 ([@ryz310](https://github.com/ryz310))
|
|
37
|
+
- [#580](https://github.com/ryz310/rubocop_challenger/pull/580) Modify the description of whether it is safe auto-correct ([@ryz310](https://github.com/ryz310))
|
|
38
|
+
|
|
39
|
+
### Rubocop Challenge
|
|
40
|
+
|
|
41
|
+
- [#586](https://github.com/ryz310/rubocop_challenger/pull/586) Re-generate .rubocop_todo.yml with RuboCop v1.27.0 ([@ryz310](https://github.com/ryz310))
|
|
42
|
+
|
|
43
|
+
### Dependabot
|
|
44
|
+
|
|
45
|
+
- [#581](https://github.com/ryz310/rubocop_challenger/pull/581) Bump activesupport from 6.1.4.7 to 6.1.5 ([@ryz310](https://github.com/ryz310))
|
|
46
|
+
- [#584](https://github.com/ryz310/rubocop_challenger/pull/584) Bump rubocop-rails from 2.14.1 to 2.14.2 ([@ryz310](https://github.com/ryz310))
|
|
47
|
+
|
|
48
|
+
## v2.6.0 (Mar 10, 2022)
|
|
49
|
+
|
|
50
|
+
### Feature
|
|
51
|
+
|
|
52
|
+
- [#577](https://github.com/ryz310/rubocop_challenger/pull/577) Support new auto-correction comments at rubocop v1.26.0 ([@ryz310](https://github.com/ryz310))
|
|
53
|
+
|
|
54
|
+
### Rubocop Challenge
|
|
55
|
+
|
|
56
|
+
- [#573](https://github.com/ryz310/rubocop_challenger/pull/573) RSpec/BeNil-20220228233046 ([@ryz310](https://github.com/ryz310))
|
|
57
|
+
- [#576](https://github.com/ryz310/rubocop_challenger/pull/576) Re-generate .rubocop_todo.yml with RuboCop v1.26.0 ([@ryz310](https://github.com/ryz310))
|
|
58
|
+
|
|
59
|
+
### Dependabot
|
|
60
|
+
|
|
61
|
+
- [#571](https://github.com/ryz310/rubocop_challenger/pull/571) Bump rspec from 3.10.0 to 3.11.0 ([@ryz310](https://github.com/ryz310))
|
|
62
|
+
- [#574](https://github.com/ryz310/rubocop_challenger/pull/574) Bump rubocop-performance from 1.13.2 to 1.13.3 ([@ryz310](https://github.com/ryz310))
|
|
63
|
+
- [#575](https://github.com/ryz310/rubocop_challenger/pull/575) Bump activesupport from 6.1.4.6 to 6.1.4.7 ([@ryz310](https://github.com/ryz310))
|
|
64
|
+
|
|
3
65
|
## v2.5.0 (Jan 18, 2022)
|
|
4
66
|
|
|
5
67
|
### Feature
|
|
6
68
|
|
|
7
|
-
|
|
69
|
+
- [#566](https://github.com/ryz310/rubocop_challenger/pull/566) Support rubocop thread safety ([@ryz310](https://github.com/ryz310))
|
|
8
70
|
|
|
9
71
|
### Rubocop Challenge
|
|
10
72
|
|
|
11
|
-
|
|
12
|
-
|
|
73
|
+
- [#554](https://github.com/ryz310/rubocop_challenger/pull/554) ryz310/rubocop-challenge/20211226233047 ([@ryz310](https://github.com/ryz310))
|
|
74
|
+
- [#555](https://github.com/ryz310/rubocop_challenger/pull/555) ryz310/rubocop-challenge/20211231233046 ([@ryz310](https://github.com/ryz310))
|
|
13
75
|
|
|
14
76
|
### Dependabot
|
|
15
77
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
78
|
+
- [#556](https://github.com/ryz310/rubocop_challenger/pull/556) Bump rubocop-performance from 1.13.0 to 1.13.1 ([@ryz310](https://github.com/ryz310))
|
|
79
|
+
- [#561](https://github.com/ryz310/rubocop_challenger/pull/561) Bump rubocop-rails from 2.13.0 to 2.13.1 ([@ryz310](https://github.com/ryz310))
|
|
80
|
+
- [#560](https://github.com/ryz310/rubocop_challenger/pull/560) Bump rspec_junit_formatter from 0.4.1 to 0.5.1 ([@ryz310](https://github.com/ryz310))
|
|
81
|
+
- [#559](https://github.com/ryz310/rubocop_challenger/pull/559) ryz310/dependabot/bundler/thor-1.2.1 ([@ryz310](https://github.com/ryz310))
|
|
82
|
+
- [#562](https://github.com/ryz310/rubocop_challenger/pull/562) Bump rainbow from 3.0.0 to 3.1.1 ([@ryz310](https://github.com/ryz310))
|
|
21
83
|
|
|
22
84
|
## v2.4.0 (Dec 26, 2021)
|
|
23
85
|
|
|
24
86
|
### Feature
|
|
25
87
|
|
|
26
|
-
|
|
88
|
+
- [#550](https://github.com/ryz310/rubocop_challenger/pull/550) The end of ruby 2.5 support ([@ryz310](https://github.com/ryz310))
|
|
27
89
|
|
|
28
90
|
### Rubocop Challenge
|
|
29
91
|
|
|
30
|
-
|
|
92
|
+
- [#544](https://github.com/ryz310/rubocop_challenger/pull/544) Gemspec/RequireMFA-20211115233051 ([@ryz310](https://github.com/ryz310))
|
|
31
93
|
|
|
32
94
|
### Dependabot
|
|
33
95
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
96
|
+
- [#479](https://github.com/ryz310/rubocop_challenger/pull/479) ryz310/dependabot/bundler/rubocop-1.13.0 ([@ryz310](https://github.com/ryz310))
|
|
97
|
+
- [#482](https://github.com/ryz310/rubocop_challenger/pull/482) ryz310/dependabot/bundler/rubocop-rspec-2.3.0 ([@ryz310](https://github.com/ryz310))
|
|
98
|
+
- [#483](https://github.com/ryz310/rubocop_challenger/pull/483) ryz310/dependabot/add-v2-config-file ([@ryz310](https://github.com/ryz310))
|
|
99
|
+
- [#518](https://github.com/ryz310/rubocop_challenger/pull/518) Bump rake from 13.0.4 to 13.0.6 ([@ryz310](https://github.com/ryz310))
|
|
100
|
+
- [#537](https://github.com/ryz310/rubocop_challenger/pull/537) ryz310/dependabot/bundler/rubocop-rails-2.12.4 ([@ryz310](https://github.com/ryz310))
|
|
101
|
+
- [#542](https://github.com/ryz310/rubocop_challenger/pull/542) Bump addressable from 2.7.0 to 2.8.0 ([@ryz310](https://github.com/ryz310))
|
|
102
|
+
- [#543](https://github.com/ryz310/rubocop_challenger/pull/543) Bump rubocop-performance from 1.11.5 to 1.12.0 ([@ryz310](https://github.com/ryz310))
|
|
103
|
+
- [#546](https://github.com/ryz310/rubocop_challenger/pull/546) Bump yard from 0.9.26 to 0.9.27 ([@ryz310](https://github.com/ryz310))
|
|
42
104
|
|
|
43
105
|
## v2.3.0 (Feb 23, 2021)
|
|
44
106
|
|
|
45
107
|
### Feature
|
|
46
108
|
|
|
47
|
-
|
|
109
|
+
- [#465](https://github.com/ryz310/rubocop_challenger/pull/465) Add description whether the challenge is created by safe autocorrect or not ([@ryz310](https://github.com/ryz310))
|
|
48
110
|
|
|
49
111
|
### Rubocop Challenge
|
|
50
112
|
|
|
51
|
-
|
|
113
|
+
- [#464](https://github.com/ryz310/rubocop_challenger/pull/464) Re-generate .rubocop_todo.yml with RuboCop v1.10.0 ([@ryz310](https://github.com/ryz310))
|
|
52
114
|
|
|
53
115
|
### Dependabot
|
|
54
116
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
117
|
+
- [#453](https://github.com/ryz310/rubocop_challenger/pull/453) ryz310/dependabot/bundler/thor-1.1.0 ([@ryz310](https://github.com/ryz310))
|
|
118
|
+
- [#457](https://github.com/ryz310/rubocop_challenger/pull/457) ryz310/dependabot/bundler/rubocop-1.9.1 ([@ryz310](https://github.com/ryz310))
|
|
119
|
+
- [#461](https://github.com/ryz310/rubocop_challenger/pull/461) Update ruby-orbs orb to v1.6.2 ([@ryz310](https://github.com/ryz310))
|
|
58
120
|
|
|
59
121
|
## v2.2.0 (Jan 11, 2021)
|
|
60
122
|
|
|
61
123
|
### Feature
|
|
62
124
|
|
|
63
|
-
|
|
125
|
+
- [#449](https://github.com/ryz310/rubocop_challenger/pull/449) Add verbose option ([@ryz310](https://github.com/ryz310))
|
|
64
126
|
|
|
65
127
|
### Dependabot
|
|
66
128
|
|
|
67
|
-
|
|
129
|
+
- [#447](https://github.com/ryz310/rubocop_challenger/pull/447) ryz310/dependabot/bundler/rubocop-1.8.1 ([@ryz310](https://github.com/ryz310))
|
|
68
130
|
|
|
69
131
|
## v2.1.0 (Jan 11, 2021)
|
|
70
132
|
|
|
71
133
|
### Feature
|
|
72
134
|
|
|
73
|
-
|
|
135
|
+
- [#441](https://github.com/ryz310/rubocop_challenger/pull/441) Improve PR description generation ([@ryz310](https://github.com/ryz310))
|
|
74
136
|
|
|
75
137
|
### Rubocop Challenge
|
|
76
138
|
|
|
77
|
-
|
|
139
|
+
- [#442](https://github.com/ryz310/rubocop_challenger/pull/442) Re-generate .rubocop_todo.yml with RuboCop v1.8.0 ([@ryz310](https://github.com/ryz310))
|
|
78
140
|
|
|
79
141
|
### Dependabot
|
|
80
142
|
|
|
81
|
-
|
|
143
|
+
- [#444](https://github.com/ryz310/rubocop_challenger/pull/444) Update simplecov requirement from = 0.17.1 to = 0.21.2 ([@ryz310](https://github.com/ryz310))
|
|
82
144
|
|
|
83
145
|
## v2.0.1 (Jan 06, 2021)
|
|
84
146
|
|
|
85
147
|
### Bugfix
|
|
86
148
|
|
|
87
|
-
|
|
149
|
+
- [#437](https://github.com/ryz310/rubocop_challenger/pull/437) Fix keyword argument expanding for Ruby 3.0 ([@ryz310](https://github.com/ryz310))
|
|
88
150
|
|
|
89
151
|
## v2.0.0 (Jan 04, 2021)
|
|
90
152
|
|
|
91
153
|
### Feature
|
|
92
154
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
155
|
+
- [#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))
|
|
156
|
+
- [#187](https://github.com/ryz310/rubocop_challenger/pull/187) Bundle update rubocop ([@ryz310](https://github.com/ryz310))
|
|
157
|
+
- [#208](https://github.com/ryz310/rubocop_challenger/pull/208) Render links for release note and compare page ([@ryz310](https://github.com/ryz310))
|
|
158
|
+
- [#217](https://github.com/ryz310/rubocop_challenger/pull/217) Support auto gem config options ([@ryz310](https://github.com/ryz310))
|
|
159
|
+
- [#250](https://github.com/ryz310/rubocop_challenger/pull/250) Add error reporting feature ([@ryz310](https://github.com/ryz310))
|
|
160
|
+
- [#253](https://github.com/ryz310/rubocop_challenger/pull/253) Add information of the rubocop challenge ([@ryz310](https://github.com/ryz310))
|
|
161
|
+
- [#288](https://github.com/ryz310/rubocop_challenger/pull/288) Support ruby 2.7 ([@ryz310](https://github.com/ryz310))
|
|
162
|
+
- [#362](https://github.com/ryz310/rubocop_challenger/pull/362) Use rubocop auto correct all ([@ryz310](https://github.com/ryz310))
|
|
163
|
+
- [#398](https://github.com/ryz310/rubocop_challenger/pull/398) Add auto correct safe option ([@ryz310](https://github.com/ryz310))
|
|
164
|
+
- [#432](https://github.com/ryz310/rubocop_challenger/pull/432) Support ruby 3.0 ([@ryz310](https://github.com/ryz310))
|
|
103
165
|
|
|
104
166
|
### Bugfix
|
|
105
167
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
168
|
+
- [#212](https://github.com/ryz310/rubocop_challenger/pull/212) Fix the version of pr_comet ([@ryz310](https://github.com/ryz310))
|
|
169
|
+
- [#231](https://github.com/ryz310/rubocop_challenger/pull/231) Fix the way of requirements loading for optional dependencies ([@ryz310](https://github.com/ryz310))
|
|
170
|
+
- [#238](https://github.com/ryz310/rubocop_challenger/pull/238) Fix/load error of the updated gems ([@ryz310](https://github.com/ryz310))
|
|
171
|
+
- [#363](https://github.com/ryz310/rubocop_challenger/pull/363) Require rubocop-rails gem ([@ryz310](https://github.com/ryz310))
|
|
110
172
|
|
|
111
173
|
### Breaking Change
|
|
112
174
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
175
|
+
- [#180](https://github.com/ryz310/rubocop_challenger/pull/180) Farewell ruby 2.3 ([@ryz310](https://github.com/ryz310))
|
|
176
|
+
- [#184](https://github.com/ryz310/rubocop_challenger/pull/184) Remove base branch option ([@ryz310](https://github.com/ryz310))
|
|
177
|
+
- [#396](https://github.com/ryz310/rubocop_challenger/pull/396) End of support for Ruby 2.4 ([@ryz310](https://github.com/ryz310))
|
|
116
178
|
|
|
117
179
|
### Rubocop Challenge
|
|
118
180
|
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
181
|
+
- [#228](https://github.com/ryz310/rubocop_challenger/pull/228) Style/WordArray-20190625233039 ([@ryz310](https://github.com/ryz310))
|
|
182
|
+
- [#235](https://github.com/ryz310/rubocop_challenger/pull/235) Performance/RegexpMatch-20190729233033 ([@ryz310](https://github.com/ryz310))
|
|
183
|
+
- [#236](https://github.com/ryz310/rubocop_challenger/pull/236) Layout/SpaceAroundOperators-20190731233025 ([@ryz310](https://github.com/ryz310))
|
|
184
|
+
- [#317](https://github.com/ryz310/rubocop_challenger/pull/317) Performance/StartWith-20200523233027 ([@ryz310](https://github.com/ryz310))
|
|
185
|
+
- [#427](https://github.com/ryz310/rubocop_challenger/pull/427) Re-generate .rubocop_todo.yml with RuboCop v1.7.0 ([@ryz310](https://github.com/ryz310))
|
|
124
186
|
|
|
125
187
|
### Dependabot
|
|
126
188
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
189
|
+
- [#242](https://github.com/ryz310/rubocop_challenger/pull/242) ryz310/dependabot/bundler/rake-tw-13.0 ([@ryz310](https://github.com/ryz310))
|
|
190
|
+
- [#244](https://github.com/ryz310/rubocop_challenger/pull/244) ryz310/dependabot/bundler/simplecov-0.17.1 ([@ryz310](https://github.com/ryz310))
|
|
191
|
+
- [#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))
|
|
192
|
+
- [#271](https://github.com/ryz310/rubocop_challenger/pull/271) Bump thor from 1.0.0 to 1.0.1 ([@ryz310](https://github.com/ryz310))
|
|
193
|
+
- [#303](https://github.com/ryz310/rubocop_challenger/pull/303) ryz310/dependabot/bundler/pry-byebug-3.9.0 ([@ryz310](https://github.com/ryz310))
|
|
194
|
+
- [#376](https://github.com/ryz310/rubocop_challenger/pull/376) ryz310/dependabot/bundler/rspec-3.10.0 ([@ryz310](https://github.com/ryz310))
|
|
195
|
+
- [#414](https://github.com/ryz310/rubocop_challenger/pull/414) ryz310/dependabot/bundler/rubocop-rspec-2.0.1 ([@ryz310](https://github.com/ryz310))
|
|
196
|
+
- [#421](https://github.com/ryz310/rubocop_challenger/pull/421) ryz310/dependabot/bundler/rubocop-1.6.1 ([@ryz310](https://github.com/ryz310))
|
|
197
|
+
- [#423](https://github.com/ryz310/rubocop_challenger/pull/423) ryz310/dependabot/bundler/rubocop-rails-2.9.1 ([@ryz310](https://github.com/ryz310))
|
|
198
|
+
- [#426](https://github.com/ryz310/rubocop_challenger/pull/426) ryz310/dependabot/bundler/rake-13.0.3 ([@ryz310](https://github.com/ryz310))
|
|
199
|
+
- [#428](https://github.com/ryz310/rubocop_challenger/pull/428) ryz310/dependabot/bundler/yard-0.9.26 ([@ryz310](https://github.com/ryz310))
|
|
200
|
+
- [#431](https://github.com/ryz310/rubocop_challenger/pull/431) ryz310/dependabot/bundler/rubocop-performance-1.9.2 ([@ryz310](https://github.com/ryz310))
|
|
139
201
|
|
|
140
202
|
### Security
|
|
141
203
|
|
|
142
|
-
|
|
204
|
+
- [#230](https://github.com/ryz310/rubocop_challenger/pull/230) Bump yard from 0.9.19 to 0.9.20 ([@ryz310](https://github.com/ryz310))
|
|
143
205
|
|
|
144
206
|
### Misc
|
|
145
207
|
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
208
|
+
- [#178](https://github.com/ryz310/rubocop_challenger/pull/178) Use #abort instead of #puts and #exit! ([@ryz310](https://github.com/ryz310))
|
|
209
|
+
- [#181](https://github.com/ryz310/rubocop_challenger/pull/181) Remove waffle.io badge ([@ryz310](https://github.com/ryz310))
|
|
210
|
+
- [#185](https://github.com/ryz310/rubocop_challenger/pull/185) Improve code coverage and fix implements ([@ryz310](https://github.com/ryz310))
|
|
211
|
+
- [#186](https://github.com/ryz310/rubocop_challenger/pull/186) Use #abort instead of #exit! ([@ryz310](https://github.com/ryz310))
|
|
212
|
+
- [#192](https://github.com/ryz310/rubocop_challenger/pull/192) Extract with pr comet ([@ryz310](https://github.com/ryz310))
|
|
213
|
+
- [#216](https://github.com/ryz310/rubocop_challenger/pull/216) Use rainbow gem ([@ryz310](https://github.com/ryz310))
|
|
214
|
+
- [#218](https://github.com/ryz310/rubocop_challenger/pull/218) Add pull request to GitHub project on execute ([@ryz310](https://github.com/ryz310))
|
|
215
|
+
- [#219](https://github.com/ryz310/rubocop_challenger/pull/219) Add auto updating target gems ([@ryz310](https://github.com/ryz310))
|
|
216
|
+
- [#223](https://github.com/ryz310/rubocop_challenger/pull/223) Support base branch option ([@ryz310](https://github.com/ryz310))
|
|
217
|
+
- [#227](https://github.com/ryz310/rubocop_challenger/pull/227) Migrate circle ci version to 2.1 ([@ryz310](https://github.com/ryz310))
|
|
218
|
+
- [#239](https://github.com/ryz310/rubocop_challenger/pull/239) Introduce gem comet ([@ryz310](https://github.com/ryz310))
|
|
219
|
+
- [#294](https://github.com/ryz310/rubocop_challenger/pull/294) Update ruby-orbs orb to v1.6.0 ([@ryz310](https://github.com/ryz310))
|
|
220
|
+
- [#304](https://github.com/ryz310/rubocop_challenger/pull/304) Edit dependabot configuration ([@ryz310](https://github.com/ryz310))
|
|
221
|
+
- [#433](https://github.com/ryz310/rubocop_challenger/pull/433) Update `pr_comet` ([@ryz310](https://github.com/ryz310))
|
|
160
222
|
|
|
161
223
|
## v1.2.0 (Feb 27, 2019)
|
|
162
224
|
|
|
163
225
|
### Feature
|
|
164
226
|
|
|
165
|
-
|
|
227
|
+
- Challenge incompleted list ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
|
|
166
228
|
|
|
167
229
|
### Bugfix
|
|
168
230
|
|
|
169
|
-
|
|
231
|
+
- Fix exit code when no more auto-correctable rule ([#175](https://github.com/ryz310/rubocop_challenger/pull/175))
|
|
170
232
|
|
|
171
233
|
### Breaking Change
|
|
172
234
|
|
|
173
|
-
|
|
235
|
+
- Remove "regenerate-rubocop-todo" option ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
|
|
174
236
|
|
|
175
237
|
## v1.1.2 (Feb 21, 2019)
|
|
176
238
|
|
|
177
239
|
### Feature
|
|
178
240
|
|
|
179
|
-
|
|
241
|
+
- Re-generate .rubocop_todo.yml on pre-challenge ([#169](https://github.com/ryz310/rubocop_challenger/pull/169))
|
|
180
242
|
|
|
181
243
|
## v1.1.1 (Jan 17, 2019)
|
|
182
244
|
|
|
183
245
|
### Bugfix
|
|
184
246
|
|
|
185
|
-
|
|
247
|
+
- Fix encountering name error when finding a cop class by cop name ([#164](https://github.com/ryz310/rubocop_challenger/pull/164))
|
|
186
248
|
|
|
187
249
|
### Misc
|
|
188
250
|
|
|
189
|
-
|
|
251
|
+
- Configure Renovate ([#162](https://github.com/ryz310/rubocop_challenger/pull/162))
|
|
190
252
|
|
|
191
253
|
## v1.1.0 (Dec 29, 2018)
|
|
192
254
|
|
|
193
255
|
### Feature
|
|
194
256
|
|
|
195
|
-
|
|
257
|
+
- Support ruby 2.6 ([#156](https://github.com/ryz310/rubocop_challenger/pull/156))
|
|
196
258
|
|
|
197
259
|
### Misc
|
|
198
260
|
|
|
199
|
-
|
|
261
|
+
- Change emoji on the commit message ([#158](https://github.com/ryz310/rubocop_challenger/pull/158))
|
|
200
262
|
|
|
201
263
|
## v1.0.0 (Dec 3, 2018)
|
|
202
264
|
|
|
@@ -206,160 +268,159 @@ Release v1.0.0 :tada:
|
|
|
206
268
|
|
|
207
269
|
### Security
|
|
208
270
|
|
|
209
|
-
|
|
271
|
+
- Add quiet option on git push command ([#149](https://github.com/ryz310/rubocop_challenger/pull/149))
|
|
210
272
|
|
|
211
273
|
### Misc
|
|
212
274
|
|
|
213
|
-
|
|
214
|
-
|
|
275
|
+
- Add yard testing flow ([#150](https://github.com/ryz310/rubocop_challenger/pull/150))
|
|
276
|
+
- Add jailbreak script ([#151](https://github.com/ryz310/rubocop_challenger/pull/151))
|
|
215
277
|
|
|
216
278
|
## v1.0.0.pre3 (Nov 17, 2018)
|
|
217
279
|
|
|
218
280
|
### Feature
|
|
219
281
|
|
|
220
|
-
|
|
221
|
-
|
|
282
|
+
- Output the result in the execution ([#139](https://github.com/ryz310/rubocop_challenger/pull/139))
|
|
283
|
+
- Colorize error log ([#145](https://github.com/ryz310/rubocop_challenger/pull/145))
|
|
222
284
|
|
|
223
285
|
### Bugfix
|
|
224
286
|
|
|
225
|
-
|
|
287
|
+
- Filter access token in the command logging ([#144](https://github.com/ryz310/rubocop_challenger/pull/144))
|
|
226
288
|
|
|
227
289
|
## v1.0.0.pre2 (Nov 15, 2018)
|
|
228
290
|
|
|
229
291
|
### Feature
|
|
230
292
|
|
|
231
|
-
|
|
232
|
-
|
|
293
|
+
- Support private repository ([#132](https://github.com/ryz310/rubocop_challenger/pull/132))
|
|
294
|
+
- Support old git version ([#133](https://github.com/ryz310/rubocop_challenger/pull/133))
|
|
233
295
|
|
|
234
296
|
### Misc
|
|
235
297
|
|
|
236
|
-
|
|
237
|
-
|
|
298
|
+
- Add Github::Client#add_labels spec ([#131](https://github.com/ryz310/rubocop_challenger/pull/131))
|
|
299
|
+
- Remove a unnecessary option ([#134](https://github.com/ryz310/rubocop_challenger/pull/134))
|
|
238
300
|
|
|
239
301
|
## v1.0.0.pre (Nov 13, 2018)
|
|
240
302
|
|
|
241
303
|
### Feature
|
|
242
304
|
|
|
243
|
-
|
|
305
|
+
- Use octokit ([#121](https://github.com/ryz310/rubocop_challenger/pull/121))
|
|
244
306
|
|
|
245
307
|
### Breaking Change
|
|
246
308
|
|
|
247
|
-
|
|
309
|
+
- Change `--regenerate-rubocop-todo` option default value to true
|
|
248
310
|
|
|
249
311
|
### Misc
|
|
250
312
|
|
|
251
|
-
|
|
313
|
+
- Modify gem version validator ([#127](https://github.com/ryz310/rubocop_challenger/pull/127))
|
|
252
314
|
|
|
253
315
|
## v0.5.2 (Nov 4, 2018)
|
|
254
316
|
|
|
255
317
|
### Misc
|
|
256
318
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
319
|
+
- Install code climate ([#116](https://github.com/ryz310/rubocop_challenger/pull/116))
|
|
320
|
+
- Fix coveralls badge URL ([#117](https://github.com/ryz310/rubocop_challenger/pull/117))
|
|
321
|
+
- Uninstall coveralls ([#118](https://github.com/ryz310/rubocop_challenger/pull/118))
|
|
260
322
|
|
|
261
323
|
## v0.5.1 (Nov 1, 2018)
|
|
262
324
|
|
|
263
325
|
### Misc
|
|
264
326
|
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
327
|
+
- Style/MutableConstant at Tue Oct 30 23:30:33 UTC 2018 ([#106](https://github.com/ryz310/rubocop_challenger/pull/106))
|
|
328
|
+
- Install coveralls ([#107](https://github.com/ryz310/rubocop_challenger/pull/107))
|
|
329
|
+
- Definition of Metrics/BlockLength ([#109](https://github.com/ryz310/rubocop_challenger/pull/109))
|
|
330
|
+
- Fix offense of RSpec/ExampleLength ([#110](https://github.com/ryz310/rubocop_challenger/pull/110))
|
|
331
|
+
- Fix offense of Style/Documentation ([#111](https://github.com/ryz310/rubocop_challenger/pull/111))
|
|
332
|
+
- Fix offense of Metrics/LineLength ([#112](https://github.com/ryz310/rubocop_challenger/pull/112))
|
|
333
|
+
- Fix that testing target is wrong ([#113](https://github.com/ryz310/rubocop_challenger/pull/113))
|
|
272
334
|
|
|
273
335
|
## v0.5.0 (Oct 30, 2018)
|
|
274
336
|
|
|
275
337
|
### Feature
|
|
276
338
|
|
|
277
|
-
|
|
339
|
+
- Use bundle exec ([#100](https://github.com/ryz310/rubocop_challenger/pull/100))
|
|
278
340
|
|
|
279
341
|
### Breaking Change
|
|
280
342
|
|
|
281
|
-
|
|
343
|
+
- Return example name ([#101](https://github.com/ryz310/rubocop_challenger/pull/101))
|
|
282
344
|
|
|
283
345
|
### Misc
|
|
284
346
|
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
347
|
+
- Layout/AlignHash at Sun Oct 28 23:30:20 UTC 2018 ([#97](https://github.com/ryz310/rubocop_challenger/pull/97))
|
|
348
|
+
- Add Rubocop Challenge example to the README.md ([#98](https://github.com/ryz310/rubocop_challenger/pull/98))
|
|
349
|
+
- Update bundle when create release PR ([#103](https://github.com/ryz310/rubocop_challenger/pull/103))
|
|
288
350
|
|
|
289
351
|
## v0.4.1 (Oct 28, 2018)
|
|
290
352
|
|
|
291
353
|
### Bugfix
|
|
292
354
|
|
|
293
|
-
|
|
294
|
-
|
|
355
|
+
- Return status code 0 when exists no auto-correctable cop ([#91](https://github.com/ryz310/rubocop_challenger/pull/91))
|
|
356
|
+
- Fix rubocop version mismatch ([#92](https://github.com/ryz310/rubocop_challenger/pull/92))
|
|
295
357
|
|
|
296
358
|
### Misc
|
|
297
359
|
|
|
298
|
-
|
|
299
|
-
|
|
360
|
+
- Style/RedundantSelf at Fri Oct 26 05:58:13 UTC 2018 ([#89](https://github.com/ryz310/rubocop_challenger/pull/89))
|
|
361
|
+
- Layout/SpaceInsideBlockBraces at Sat Oct 27 23:30:21 UTC 2018 ([#93](https://github.com/ryz310/rubocop_challenger/pull/93))
|
|
300
362
|
|
|
301
363
|
## v0.4.0 (Oct 26, 2018)
|
|
302
364
|
|
|
303
365
|
### Feature
|
|
304
366
|
|
|
305
|
-
|
|
367
|
+
- Generate document from yardoc ([#86](https://github.com/ryz310/rubocop_challenger/pull/86))
|
|
306
368
|
|
|
307
369
|
### Misc
|
|
308
370
|
|
|
309
|
-
|
|
310
|
-
|
|
371
|
+
- Rake/create pr for version up ([#81](https://github.com/ryz310/rubocop_challenger/pull/81))
|
|
372
|
+
- Style/RescueModifier at Wed Oct 24 23:30:21 UTC 2018 ([#82](https://github.com/ryz310/rubocop_challenger/pull/82))
|
|
311
373
|
|
|
312
374
|
## v0.3.1 (Oct 23, 2018)
|
|
313
375
|
|
|
314
376
|
### Feature
|
|
315
377
|
|
|
316
|
-
|
|
317
|
-
|
|
378
|
+
- Modify default template ([#73](https://github.com/ryz310/rubocop_challenger/pull/73))
|
|
318
379
|
|
|
319
380
|
## v0.3.0 (Oct 23, 2018)
|
|
320
381
|
|
|
321
382
|
### Feature
|
|
322
383
|
|
|
323
|
-
|
|
324
|
-
|
|
384
|
+
- Add labels option ([#67](https://github.com/ryz310/rubocop_challenger/pull/67))
|
|
385
|
+
- Add template option ([#70](https://github.com/ryz310/rubocop_challenger/pull/70))
|
|
325
386
|
|
|
326
387
|
### Misc
|
|
327
388
|
|
|
328
|
-
|
|
389
|
+
- Run rubocop challenge after release ([#68](https://github.com/ryz310/rubocop_challenger/pull/68))
|
|
329
390
|
|
|
330
391
|
## v0.2.1 (Oct 23, 2019)
|
|
331
392
|
|
|
332
393
|
### Bugfix
|
|
333
394
|
|
|
334
|
-
|
|
395
|
+
- Fix default PR template file path ([#64](https://github.com/ryz310/rubocop_challenger/pull/64))
|
|
335
396
|
|
|
336
397
|
## v0.2.0 (Oct 23, 2018)
|
|
337
398
|
|
|
338
399
|
### Feature
|
|
339
400
|
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
401
|
+
- Generate pr template ([#50](https://github.com/ryz310/rubocop_challenger/pull/50))
|
|
402
|
+
- Add no-commit option ([#53](https://github.com/ryz310/rubocop_challenger/pull/53))
|
|
403
|
+
- Return status code 1 when an error occurs ([#56](https://github.com/ryz310/rubocop_challenger/pull/56))
|
|
404
|
+
- Add option which regenerate rubocop todo file ([#59](https://github.com/ryz310/rubocop_challenger/pull/59))
|
|
344
405
|
|
|
345
406
|
### Misc
|
|
346
407
|
|
|
347
|
-
|
|
348
|
-
|
|
408
|
+
- Add access token description ([#48](https://github.com/ryz310/rubocop_challenger/pull/48))
|
|
409
|
+
- Add no document option to gem install command ([#51](https://github.com/ryz310/rubocop_challenger/pull/51))
|
|
349
410
|
|
|
350
411
|
## v0.1.3 (Oct 21, 2018)
|
|
351
412
|
|
|
352
413
|
### Misc
|
|
353
414
|
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
415
|
+
- Style/TrailingCommaInArrayLiteral at Fri Oct 19 23:30:18 UTC 2018 ([#34](https://github.com/ryz310/rubocop_challenger/pull/34))
|
|
416
|
+
- Update readme ([#36](https://github.com/ryz310/rubocop_challenger/pull/36))
|
|
417
|
+
- Add challenge class spec ([#42](https://github.com/ryz310/rubocop_challenger/pull/42))
|
|
357
418
|
|
|
358
419
|
## v0.1.2 (Oct 19, 2018)
|
|
359
420
|
|
|
360
421
|
### Misc
|
|
361
422
|
|
|
362
|
-
|
|
423
|
+
- Install from gem ([#28](https://github.com/ryz310/rubocop_challenger/pull/28))
|
|
363
424
|
|
|
364
425
|
## v0.1.1 (Oct 19, 2018)
|
|
365
426
|
|
data/Gemfile
CHANGED
|
@@ -4,7 +4,5 @@ source 'https://rubygems.org'
|
|
|
4
4
|
|
|
5
5
|
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
|
6
6
|
|
|
7
|
-
gem 'activesupport', '~> 6.1' # TODO: Remove this line at the end of Ruby 2.6 support
|
|
8
|
-
|
|
9
7
|
# Specify your gem's dependencies in rubocop_challenger.gemspec
|
|
10
8
|
gemspec
|