rubocop_challenger 2.6.0 → 2.7.0

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: f437746a124d1136ba8e063c238ce634a96a21204b55d43970cd0131aa7c698e
4
- data.tar.gz: c69494134cb69557e40ab92af2dbbd5bc53c950f0c9d471995a4dab78a989843
3
+ metadata.gz: a55a6ab06c5737848ead37e6fe9d3cd0b021fc4fcefea47c1582b7b799306401
4
+ data.tar.gz: 51b0f37c626115f654c16ef3452562e36c2a548f09f3e8875f0abe0a159a2868
5
5
  SHA512:
6
- metadata.gz: 91c99525eacb2713aa3f003ffc3afd9658c93d733a3ff36df24852a00f00e8fb27fb1431dfe78ef58d5ef98fdbf8ef1c981201134749e050a842d793217dceb6
7
- data.tar.gz: 722cbfd0286ff9121615bdb3812e1667e09b1d8bafd316be1e387c56c61b26182e75b764c7754161fb3c0f0ff067e062fd67825697449f715d50f77c1e781ede
6
+ metadata.gz: cad61624df3c1fcc152dba29035a4f5117b4c64fcacbe20112fd329665f208682e1ba15e20a1ede6c843065fecfada1ad359a5ebd99c21642833ccf29f57a24e
7
+ data.tar.gz: 5e816517ffc0d353b08b176b4036bb56804583b42dc458cc56eee90ba4b5d0229530725ee9b4efb080e951c171c76837adde81abbd847ae8ae170579b951bd4b
data/.circleci/config.yml CHANGED
@@ -12,23 +12,23 @@ references:
12
12
  - &ruby_version
13
13
  ruby_version:
14
14
  type: enum
15
- enum: ['2.6', '2.7', '3.0']
16
- default: '3.0'
15
+ enum: ["2.6", "2.7", "3.0", "3.1"]
16
+ default: "3.1"
17
17
 
18
18
  executors:
19
19
  default:
20
20
  parameters:
21
21
  <<: *ruby_version
22
22
  docker:
23
- - image: cimg/ruby:<< parameters.ruby_version >>
23
+ - image: cimg/ruby:<< parameters.ruby_version >>
24
24
  working_directory: ~/repo
25
25
 
26
26
  commands:
27
27
  run_rspec:
28
- description: 'Run RSpec'
28
+ description: "Run RSpec"
29
29
  steps:
30
30
  - run:
31
- name: 'Execute RSpec'
31
+ name: "Execute RSpec"
32
32
  command: |
33
33
  mkdir /tmp/test-results
34
34
  TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)"
@@ -58,7 +58,7 @@ commands:
58
58
  name: Run RuboCop
59
59
  command: bundle exec rubocop
60
60
  yardoc:
61
- description: 'Generate YARDoc'
61
+ description: "Generate YARDoc"
62
62
  steps:
63
63
  - run: bundle exec yardoc -o ./yardoc
64
64
  - store_artifacts:
@@ -159,7 +159,7 @@ jobs:
159
159
  - code-climate/install
160
160
  - code-climate/sum-coverage:
161
161
  input: codeclimate.*.json
162
- parts: 3
162
+ parts: 4
163
163
  - code-climate/upload-coverage
164
164
  rubocop:
165
165
  executor: default
@@ -194,13 +194,16 @@ workflows:
194
194
  jobs:
195
195
  - build:
196
196
  name: build_on_ruby_2.6
197
- ruby_version: '2.6'
197
+ ruby_version: "2.6"
198
198
  - build:
199
199
  name: build_on_ruby_2.7
200
- ruby_version: '2.7'
200
+ ruby_version: "2.7"
201
201
  - build:
202
202
  name: build_on_ruby_3.0
203
- ruby_version: '3.0'
203
+ ruby_version: "3.0"
204
+ - build:
205
+ name: build_on_ruby_3.1
206
+ ruby_version: "3.1"
204
207
  - rubocop
205
208
  - yardoc
206
209
  - integration_testing
@@ -209,12 +212,14 @@ workflows:
209
212
  - build_on_ruby_2.6
210
213
  - build_on_ruby_2.7
211
214
  - build_on_ruby_3.0
215
+ - build_on_ruby_3.1
212
216
  - release:
213
217
  context: RubyGems API Key
214
218
  requires:
215
219
  - build_on_ruby_2.6
216
220
  - build_on_ruby_2.7
217
221
  - build_on_ruby_3.0
222
+ - build_on_ruby_3.1
218
223
  - rubocop
219
224
  filters:
220
225
  branches:
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.26.0.
3
+ # using RuboCop version 1.27.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,219 +1,235 @@
1
1
  # Change log
2
2
 
3
+ ## v2.7.0 (May 08, 2022)
4
+
5
+ ### Feature
6
+
7
+ - [#605](https://github.com/ryz310/rubocop_challenger/pull/605) Support ruby 3.1 ([@ryz310](https://github.com/ryz310))
8
+ - [#580](https://github.com/ryz310/rubocop_challenger/pull/580) Modify the description of whether it is safe auto-correct ([@ryz310](https://github.com/ryz310))
9
+
10
+ ### Rubocop Challenge
11
+
12
+ - [#586](https://github.com/ryz310/rubocop_challenger/pull/586) Re-generate .rubocop_todo.yml with RuboCop v1.27.0 ([@ryz310](https://github.com/ryz310))
13
+
14
+ ### Dependabot
15
+
16
+ - [#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))
17
+ - [#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))
18
+
3
19
  ## v2.6.0 (Mar 10, 2022)
4
20
 
5
21
  ### Feature
6
22
 
7
- * [#577](https://github.com/ryz310/rubocop_challenger/pull/577) Support new auto-correction comments at rubocop v1.26.0 ([@ryz310](https://github.com/ryz310))
23
+ - [#577](https://github.com/ryz310/rubocop_challenger/pull/577) Support new auto-correction comments at rubocop v1.26.0 ([@ryz310](https://github.com/ryz310))
8
24
 
9
25
  ### Rubocop Challenge
10
26
 
11
- * [#573](https://github.com/ryz310/rubocop_challenger/pull/573) RSpec/BeNil-20220228233046 ([@ryz310](https://github.com/ryz310))
12
- * [#576](https://github.com/ryz310/rubocop_challenger/pull/576) Re-generate .rubocop_todo.yml with RuboCop v1.26.0 ([@ryz310](https://github.com/ryz310))
27
+ - [#573](https://github.com/ryz310/rubocop_challenger/pull/573) RSpec/BeNil-20220228233046 ([@ryz310](https://github.com/ryz310))
28
+ - [#576](https://github.com/ryz310/rubocop_challenger/pull/576) Re-generate .rubocop_todo.yml with RuboCop v1.26.0 ([@ryz310](https://github.com/ryz310))
13
29
 
14
30
  ### Dependabot
15
31
 
16
- * [#571](https://github.com/ryz310/rubocop_challenger/pull/571) Bump rspec from 3.10.0 to 3.11.0 ([@ryz310](https://github.com/ryz310))
17
- * [#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))
18
- * [#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))
32
+ - [#571](https://github.com/ryz310/rubocop_challenger/pull/571) Bump rspec from 3.10.0 to 3.11.0 ([@ryz310](https://github.com/ryz310))
33
+ - [#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))
34
+ - [#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))
19
35
 
20
36
  ## v2.5.0 (Jan 18, 2022)
21
37
 
22
38
  ### Feature
23
39
 
24
- * [#566](https://github.com/ryz310/rubocop_challenger/pull/566) Support rubocop thread safety ([@ryz310](https://github.com/ryz310))
40
+ - [#566](https://github.com/ryz310/rubocop_challenger/pull/566) Support rubocop thread safety ([@ryz310](https://github.com/ryz310))
25
41
 
26
42
  ### Rubocop Challenge
27
43
 
28
- * [#554](https://github.com/ryz310/rubocop_challenger/pull/554) ryz310/rubocop-challenge/20211226233047 ([@ryz310](https://github.com/ryz310))
29
- * [#555](https://github.com/ryz310/rubocop_challenger/pull/555) ryz310/rubocop-challenge/20211231233046 ([@ryz310](https://github.com/ryz310))
44
+ - [#554](https://github.com/ryz310/rubocop_challenger/pull/554) ryz310/rubocop-challenge/20211226233047 ([@ryz310](https://github.com/ryz310))
45
+ - [#555](https://github.com/ryz310/rubocop_challenger/pull/555) ryz310/rubocop-challenge/20211231233046 ([@ryz310](https://github.com/ryz310))
30
46
 
31
47
  ### Dependabot
32
48
 
33
- * [#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))
34
- * [#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))
35
- * [#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))
36
- * [#559](https://github.com/ryz310/rubocop_challenger/pull/559) ryz310/dependabot/bundler/thor-1.2.1 ([@ryz310](https://github.com/ryz310))
37
- * [#562](https://github.com/ryz310/rubocop_challenger/pull/562) Bump rainbow from 3.0.0 to 3.1.1 ([@ryz310](https://github.com/ryz310))
49
+ - [#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))
50
+ - [#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))
51
+ - [#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))
52
+ - [#559](https://github.com/ryz310/rubocop_challenger/pull/559) ryz310/dependabot/bundler/thor-1.2.1 ([@ryz310](https://github.com/ryz310))
53
+ - [#562](https://github.com/ryz310/rubocop_challenger/pull/562) Bump rainbow from 3.0.0 to 3.1.1 ([@ryz310](https://github.com/ryz310))
38
54
 
39
55
  ## v2.4.0 (Dec 26, 2021)
40
56
 
41
57
  ### Feature
42
58
 
43
- * [#550](https://github.com/ryz310/rubocop_challenger/pull/550) The end of ruby 2.5 support ([@ryz310](https://github.com/ryz310))
59
+ - [#550](https://github.com/ryz310/rubocop_challenger/pull/550) The end of ruby 2.5 support ([@ryz310](https://github.com/ryz310))
44
60
 
45
61
  ### Rubocop Challenge
46
62
 
47
- * [#544](https://github.com/ryz310/rubocop_challenger/pull/544) Gemspec/RequireMFA-20211115233051 ([@ryz310](https://github.com/ryz310))
63
+ - [#544](https://github.com/ryz310/rubocop_challenger/pull/544) Gemspec/RequireMFA-20211115233051 ([@ryz310](https://github.com/ryz310))
48
64
 
49
65
  ### Dependabot
50
66
 
51
- * [#479](https://github.com/ryz310/rubocop_challenger/pull/479) ryz310/dependabot/bundler/rubocop-1.13.0 ([@ryz310](https://github.com/ryz310))
52
- * [#482](https://github.com/ryz310/rubocop_challenger/pull/482) ryz310/dependabot/bundler/rubocop-rspec-2.3.0 ([@ryz310](https://github.com/ryz310))
53
- * [#483](https://github.com/ryz310/rubocop_challenger/pull/483) ryz310/dependabot/add-v2-config-file ([@ryz310](https://github.com/ryz310))
54
- * [#518](https://github.com/ryz310/rubocop_challenger/pull/518) Bump rake from 13.0.4 to 13.0.6 ([@ryz310](https://github.com/ryz310))
55
- * [#537](https://github.com/ryz310/rubocop_challenger/pull/537) ryz310/dependabot/bundler/rubocop-rails-2.12.4 ([@ryz310](https://github.com/ryz310))
56
- * [#542](https://github.com/ryz310/rubocop_challenger/pull/542) Bump addressable from 2.7.0 to 2.8.0 ([@ryz310](https://github.com/ryz310))
57
- * [#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))
58
- * [#546](https://github.com/ryz310/rubocop_challenger/pull/546) Bump yard from 0.9.26 to 0.9.27 ([@ryz310](https://github.com/ryz310))
67
+ - [#479](https://github.com/ryz310/rubocop_challenger/pull/479) ryz310/dependabot/bundler/rubocop-1.13.0 ([@ryz310](https://github.com/ryz310))
68
+ - [#482](https://github.com/ryz310/rubocop_challenger/pull/482) ryz310/dependabot/bundler/rubocop-rspec-2.3.0 ([@ryz310](https://github.com/ryz310))
69
+ - [#483](https://github.com/ryz310/rubocop_challenger/pull/483) ryz310/dependabot/add-v2-config-file ([@ryz310](https://github.com/ryz310))
70
+ - [#518](https://github.com/ryz310/rubocop_challenger/pull/518) Bump rake from 13.0.4 to 13.0.6 ([@ryz310](https://github.com/ryz310))
71
+ - [#537](https://github.com/ryz310/rubocop_challenger/pull/537) ryz310/dependabot/bundler/rubocop-rails-2.12.4 ([@ryz310](https://github.com/ryz310))
72
+ - [#542](https://github.com/ryz310/rubocop_challenger/pull/542) Bump addressable from 2.7.0 to 2.8.0 ([@ryz310](https://github.com/ryz310))
73
+ - [#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))
74
+ - [#546](https://github.com/ryz310/rubocop_challenger/pull/546) Bump yard from 0.9.26 to 0.9.27 ([@ryz310](https://github.com/ryz310))
59
75
 
60
76
  ## v2.3.0 (Feb 23, 2021)
61
77
 
62
78
  ### Feature
63
79
 
64
- * [#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))
80
+ - [#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))
65
81
 
66
82
  ### Rubocop Challenge
67
83
 
68
- * [#464](https://github.com/ryz310/rubocop_challenger/pull/464) Re-generate .rubocop_todo.yml with RuboCop v1.10.0 ([@ryz310](https://github.com/ryz310))
84
+ - [#464](https://github.com/ryz310/rubocop_challenger/pull/464) Re-generate .rubocop_todo.yml with RuboCop v1.10.0 ([@ryz310](https://github.com/ryz310))
69
85
 
70
86
  ### Dependabot
71
87
 
72
- * [#453](https://github.com/ryz310/rubocop_challenger/pull/453) ryz310/dependabot/bundler/thor-1.1.0 ([@ryz310](https://github.com/ryz310))
73
- * [#457](https://github.com/ryz310/rubocop_challenger/pull/457) ryz310/dependabot/bundler/rubocop-1.9.1 ([@ryz310](https://github.com/ryz310))
74
- * [#461](https://github.com/ryz310/rubocop_challenger/pull/461) Update ruby-orbs orb to v1.6.2 ([@ryz310](https://github.com/ryz310))
88
+ - [#453](https://github.com/ryz310/rubocop_challenger/pull/453) ryz310/dependabot/bundler/thor-1.1.0 ([@ryz310](https://github.com/ryz310))
89
+ - [#457](https://github.com/ryz310/rubocop_challenger/pull/457) ryz310/dependabot/bundler/rubocop-1.9.1 ([@ryz310](https://github.com/ryz310))
90
+ - [#461](https://github.com/ryz310/rubocop_challenger/pull/461) Update ruby-orbs orb to v1.6.2 ([@ryz310](https://github.com/ryz310))
75
91
 
76
92
  ## v2.2.0 (Jan 11, 2021)
77
93
 
78
94
  ### Feature
79
95
 
80
- * [#449](https://github.com/ryz310/rubocop_challenger/pull/449) Add verbose option ([@ryz310](https://github.com/ryz310))
96
+ - [#449](https://github.com/ryz310/rubocop_challenger/pull/449) Add verbose option ([@ryz310](https://github.com/ryz310))
81
97
 
82
98
  ### Dependabot
83
99
 
84
- * [#447](https://github.com/ryz310/rubocop_challenger/pull/447) ryz310/dependabot/bundler/rubocop-1.8.1 ([@ryz310](https://github.com/ryz310))
100
+ - [#447](https://github.com/ryz310/rubocop_challenger/pull/447) ryz310/dependabot/bundler/rubocop-1.8.1 ([@ryz310](https://github.com/ryz310))
85
101
 
86
102
  ## v2.1.0 (Jan 11, 2021)
87
103
 
88
104
  ### Feature
89
105
 
90
- * [#441](https://github.com/ryz310/rubocop_challenger/pull/441) Improve PR description generation ([@ryz310](https://github.com/ryz310))
106
+ - [#441](https://github.com/ryz310/rubocop_challenger/pull/441) Improve PR description generation ([@ryz310](https://github.com/ryz310))
91
107
 
92
108
  ### Rubocop Challenge
93
109
 
94
- * [#442](https://github.com/ryz310/rubocop_challenger/pull/442) Re-generate .rubocop_todo.yml with RuboCop v1.8.0 ([@ryz310](https://github.com/ryz310))
110
+ - [#442](https://github.com/ryz310/rubocop_challenger/pull/442) Re-generate .rubocop_todo.yml with RuboCop v1.8.0 ([@ryz310](https://github.com/ryz310))
95
111
 
96
112
  ### Dependabot
97
113
 
98
- * [#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))
114
+ - [#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))
99
115
 
100
116
  ## v2.0.1 (Jan 06, 2021)
101
117
 
102
118
  ### Bugfix
103
119
 
104
- * [#437](https://github.com/ryz310/rubocop_challenger/pull/437) Fix keyword argument expanding for Ruby 3.0 ([@ryz310](https://github.com/ryz310))
120
+ - [#437](https://github.com/ryz310/rubocop_challenger/pull/437) Fix keyword argument expanding for Ruby 3.0 ([@ryz310](https://github.com/ryz310))
105
121
 
106
122
  ## v2.0.0 (Jan 04, 2021)
107
123
 
108
124
  ### Feature
109
125
 
110
- * [#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))
111
- * [#187](https://github.com/ryz310/rubocop_challenger/pull/187) Bundle update rubocop ([@ryz310](https://github.com/ryz310))
112
- * [#208](https://github.com/ryz310/rubocop_challenger/pull/208) Render links for release note and compare page ([@ryz310](https://github.com/ryz310))
113
- * [#217](https://github.com/ryz310/rubocop_challenger/pull/217) Support auto gem config options ([@ryz310](https://github.com/ryz310))
114
- * [#250](https://github.com/ryz310/rubocop_challenger/pull/250) Add error reporting feature ([@ryz310](https://github.com/ryz310))
115
- * [#253](https://github.com/ryz310/rubocop_challenger/pull/253) Add information of the rubocop challenge ([@ryz310](https://github.com/ryz310))
116
- * [#288](https://github.com/ryz310/rubocop_challenger/pull/288) Support ruby 2.7 ([@ryz310](https://github.com/ryz310))
117
- * [#362](https://github.com/ryz310/rubocop_challenger/pull/362) Use rubocop auto correct all ([@ryz310](https://github.com/ryz310))
118
- * [#398](https://github.com/ryz310/rubocop_challenger/pull/398) Add auto correct safe option ([@ryz310](https://github.com/ryz310))
119
- * [#432](https://github.com/ryz310/rubocop_challenger/pull/432) Support ruby 3.0 ([@ryz310](https://github.com/ryz310))
126
+ - [#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))
127
+ - [#187](https://github.com/ryz310/rubocop_challenger/pull/187) Bundle update rubocop ([@ryz310](https://github.com/ryz310))
128
+ - [#208](https://github.com/ryz310/rubocop_challenger/pull/208) Render links for release note and compare page ([@ryz310](https://github.com/ryz310))
129
+ - [#217](https://github.com/ryz310/rubocop_challenger/pull/217) Support auto gem config options ([@ryz310](https://github.com/ryz310))
130
+ - [#250](https://github.com/ryz310/rubocop_challenger/pull/250) Add error reporting feature ([@ryz310](https://github.com/ryz310))
131
+ - [#253](https://github.com/ryz310/rubocop_challenger/pull/253) Add information of the rubocop challenge ([@ryz310](https://github.com/ryz310))
132
+ - [#288](https://github.com/ryz310/rubocop_challenger/pull/288) Support ruby 2.7 ([@ryz310](https://github.com/ryz310))
133
+ - [#362](https://github.com/ryz310/rubocop_challenger/pull/362) Use rubocop auto correct all ([@ryz310](https://github.com/ryz310))
134
+ - [#398](https://github.com/ryz310/rubocop_challenger/pull/398) Add auto correct safe option ([@ryz310](https://github.com/ryz310))
135
+ - [#432](https://github.com/ryz310/rubocop_challenger/pull/432) Support ruby 3.0 ([@ryz310](https://github.com/ryz310))
120
136
 
121
137
  ### Bugfix
122
138
 
123
- * [#212](https://github.com/ryz310/rubocop_challenger/pull/212) Fix the version of pr_comet ([@ryz310](https://github.com/ryz310))
124
- * [#231](https://github.com/ryz310/rubocop_challenger/pull/231) Fix the way of requirements loading for optional dependencies ([@ryz310](https://github.com/ryz310))
125
- * [#238](https://github.com/ryz310/rubocop_challenger/pull/238) Fix/load error of the updated gems ([@ryz310](https://github.com/ryz310))
126
- * [#363](https://github.com/ryz310/rubocop_challenger/pull/363) Require rubocop-rails gem ([@ryz310](https://github.com/ryz310))
139
+ - [#212](https://github.com/ryz310/rubocop_challenger/pull/212) Fix the version of pr_comet ([@ryz310](https://github.com/ryz310))
140
+ - [#231](https://github.com/ryz310/rubocop_challenger/pull/231) Fix the way of requirements loading for optional dependencies ([@ryz310](https://github.com/ryz310))
141
+ - [#238](https://github.com/ryz310/rubocop_challenger/pull/238) Fix/load error of the updated gems ([@ryz310](https://github.com/ryz310))
142
+ - [#363](https://github.com/ryz310/rubocop_challenger/pull/363) Require rubocop-rails gem ([@ryz310](https://github.com/ryz310))
127
143
 
128
144
  ### Breaking Change
129
145
 
130
- * [#180](https://github.com/ryz310/rubocop_challenger/pull/180) Farewell ruby 2.3 ([@ryz310](https://github.com/ryz310))
131
- * [#184](https://github.com/ryz310/rubocop_challenger/pull/184) Remove base branch option ([@ryz310](https://github.com/ryz310))
132
- * [#396](https://github.com/ryz310/rubocop_challenger/pull/396) End of support for Ruby 2.4 ([@ryz310](https://github.com/ryz310))
146
+ - [#180](https://github.com/ryz310/rubocop_challenger/pull/180) Farewell ruby 2.3 ([@ryz310](https://github.com/ryz310))
147
+ - [#184](https://github.com/ryz310/rubocop_challenger/pull/184) Remove base branch option ([@ryz310](https://github.com/ryz310))
148
+ - [#396](https://github.com/ryz310/rubocop_challenger/pull/396) End of support for Ruby 2.4 ([@ryz310](https://github.com/ryz310))
133
149
 
134
150
  ### Rubocop Challenge
135
151
 
136
- * [#228](https://github.com/ryz310/rubocop_challenger/pull/228) Style/WordArray-20190625233039 ([@ryz310](https://github.com/ryz310))
137
- * [#235](https://github.com/ryz310/rubocop_challenger/pull/235) Performance/RegexpMatch-20190729233033 ([@ryz310](https://github.com/ryz310))
138
- * [#236](https://github.com/ryz310/rubocop_challenger/pull/236) Layout/SpaceAroundOperators-20190731233025 ([@ryz310](https://github.com/ryz310))
139
- * [#317](https://github.com/ryz310/rubocop_challenger/pull/317) Performance/StartWith-20200523233027 ([@ryz310](https://github.com/ryz310))
140
- * [#427](https://github.com/ryz310/rubocop_challenger/pull/427) Re-generate .rubocop_todo.yml with RuboCop v1.7.0 ([@ryz310](https://github.com/ryz310))
152
+ - [#228](https://github.com/ryz310/rubocop_challenger/pull/228) Style/WordArray-20190625233039 ([@ryz310](https://github.com/ryz310))
153
+ - [#235](https://github.com/ryz310/rubocop_challenger/pull/235) Performance/RegexpMatch-20190729233033 ([@ryz310](https://github.com/ryz310))
154
+ - [#236](https://github.com/ryz310/rubocop_challenger/pull/236) Layout/SpaceAroundOperators-20190731233025 ([@ryz310](https://github.com/ryz310))
155
+ - [#317](https://github.com/ryz310/rubocop_challenger/pull/317) Performance/StartWith-20200523233027 ([@ryz310](https://github.com/ryz310))
156
+ - [#427](https://github.com/ryz310/rubocop_challenger/pull/427) Re-generate .rubocop_todo.yml with RuboCop v1.7.0 ([@ryz310](https://github.com/ryz310))
141
157
 
142
158
  ### Dependabot
143
159
 
144
- * [#242](https://github.com/ryz310/rubocop_challenger/pull/242) ryz310/dependabot/bundler/rake-tw-13.0 ([@ryz310](https://github.com/ryz310))
145
- * [#244](https://github.com/ryz310/rubocop_challenger/pull/244) ryz310/dependabot/bundler/simplecov-0.17.1 ([@ryz310](https://github.com/ryz310))
146
- * [#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))
147
- * [#271](https://github.com/ryz310/rubocop_challenger/pull/271) Bump thor from 1.0.0 to 1.0.1 ([@ryz310](https://github.com/ryz310))
148
- * [#303](https://github.com/ryz310/rubocop_challenger/pull/303) ryz310/dependabot/bundler/pry-byebug-3.9.0 ([@ryz310](https://github.com/ryz310))
149
- * [#376](https://github.com/ryz310/rubocop_challenger/pull/376) ryz310/dependabot/bundler/rspec-3.10.0 ([@ryz310](https://github.com/ryz310))
150
- * [#414](https://github.com/ryz310/rubocop_challenger/pull/414) ryz310/dependabot/bundler/rubocop-rspec-2.0.1 ([@ryz310](https://github.com/ryz310))
151
- * [#421](https://github.com/ryz310/rubocop_challenger/pull/421) ryz310/dependabot/bundler/rubocop-1.6.1 ([@ryz310](https://github.com/ryz310))
152
- * [#423](https://github.com/ryz310/rubocop_challenger/pull/423) ryz310/dependabot/bundler/rubocop-rails-2.9.1 ([@ryz310](https://github.com/ryz310))
153
- * [#426](https://github.com/ryz310/rubocop_challenger/pull/426) ryz310/dependabot/bundler/rake-13.0.3 ([@ryz310](https://github.com/ryz310))
154
- * [#428](https://github.com/ryz310/rubocop_challenger/pull/428) ryz310/dependabot/bundler/yard-0.9.26 ([@ryz310](https://github.com/ryz310))
155
- * [#431](https://github.com/ryz310/rubocop_challenger/pull/431) ryz310/dependabot/bundler/rubocop-performance-1.9.2 ([@ryz310](https://github.com/ryz310))
160
+ - [#242](https://github.com/ryz310/rubocop_challenger/pull/242) ryz310/dependabot/bundler/rake-tw-13.0 ([@ryz310](https://github.com/ryz310))
161
+ - [#244](https://github.com/ryz310/rubocop_challenger/pull/244) ryz310/dependabot/bundler/simplecov-0.17.1 ([@ryz310](https://github.com/ryz310))
162
+ - [#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))
163
+ - [#271](https://github.com/ryz310/rubocop_challenger/pull/271) Bump thor from 1.0.0 to 1.0.1 ([@ryz310](https://github.com/ryz310))
164
+ - [#303](https://github.com/ryz310/rubocop_challenger/pull/303) ryz310/dependabot/bundler/pry-byebug-3.9.0 ([@ryz310](https://github.com/ryz310))
165
+ - [#376](https://github.com/ryz310/rubocop_challenger/pull/376) ryz310/dependabot/bundler/rspec-3.10.0 ([@ryz310](https://github.com/ryz310))
166
+ - [#414](https://github.com/ryz310/rubocop_challenger/pull/414) ryz310/dependabot/bundler/rubocop-rspec-2.0.1 ([@ryz310](https://github.com/ryz310))
167
+ - [#421](https://github.com/ryz310/rubocop_challenger/pull/421) ryz310/dependabot/bundler/rubocop-1.6.1 ([@ryz310](https://github.com/ryz310))
168
+ - [#423](https://github.com/ryz310/rubocop_challenger/pull/423) ryz310/dependabot/bundler/rubocop-rails-2.9.1 ([@ryz310](https://github.com/ryz310))
169
+ - [#426](https://github.com/ryz310/rubocop_challenger/pull/426) ryz310/dependabot/bundler/rake-13.0.3 ([@ryz310](https://github.com/ryz310))
170
+ - [#428](https://github.com/ryz310/rubocop_challenger/pull/428) ryz310/dependabot/bundler/yard-0.9.26 ([@ryz310](https://github.com/ryz310))
171
+ - [#431](https://github.com/ryz310/rubocop_challenger/pull/431) ryz310/dependabot/bundler/rubocop-performance-1.9.2 ([@ryz310](https://github.com/ryz310))
156
172
 
157
173
  ### Security
158
174
 
159
- * [#230](https://github.com/ryz310/rubocop_challenger/pull/230) Bump yard from 0.9.19 to 0.9.20 ([@ryz310](https://github.com/ryz310))
175
+ - [#230](https://github.com/ryz310/rubocop_challenger/pull/230) Bump yard from 0.9.19 to 0.9.20 ([@ryz310](https://github.com/ryz310))
160
176
 
161
177
  ### Misc
162
178
 
163
- * [#178](https://github.com/ryz310/rubocop_challenger/pull/178) Use #abort instead of #puts and #exit! ([@ryz310](https://github.com/ryz310))
164
- * [#181](https://github.com/ryz310/rubocop_challenger/pull/181) Remove waffle.io badge ([@ryz310](https://github.com/ryz310))
165
- * [#185](https://github.com/ryz310/rubocop_challenger/pull/185) Improve code coverage and fix implements ([@ryz310](https://github.com/ryz310))
166
- * [#186](https://github.com/ryz310/rubocop_challenger/pull/186) Use #abort instead of #exit! ([@ryz310](https://github.com/ryz310))
167
- * [#192](https://github.com/ryz310/rubocop_challenger/pull/192) Extract with pr comet ([@ryz310](https://github.com/ryz310))
168
- * [#216](https://github.com/ryz310/rubocop_challenger/pull/216) Use rainbow gem ([@ryz310](https://github.com/ryz310))
169
- * [#218](https://github.com/ryz310/rubocop_challenger/pull/218) Add pull request to GitHub project on execute ([@ryz310](https://github.com/ryz310))
170
- * [#219](https://github.com/ryz310/rubocop_challenger/pull/219) Add auto updating target gems ([@ryz310](https://github.com/ryz310))
171
- * [#223](https://github.com/ryz310/rubocop_challenger/pull/223) Support base branch option ([@ryz310](https://github.com/ryz310))
172
- * [#227](https://github.com/ryz310/rubocop_challenger/pull/227) Migrate circle ci version to 2.1 ([@ryz310](https://github.com/ryz310))
173
- * [#239](https://github.com/ryz310/rubocop_challenger/pull/239) Introduce gem comet ([@ryz310](https://github.com/ryz310))
174
- * [#294](https://github.com/ryz310/rubocop_challenger/pull/294) Update ruby-orbs orb to v1.6.0 ([@ryz310](https://github.com/ryz310))
175
- * [#304](https://github.com/ryz310/rubocop_challenger/pull/304) Edit dependabot configuration ([@ryz310](https://github.com/ryz310))
176
- * [#433](https://github.com/ryz310/rubocop_challenger/pull/433) Update `pr_comet` ([@ryz310](https://github.com/ryz310))
179
+ - [#178](https://github.com/ryz310/rubocop_challenger/pull/178) Use #abort instead of #puts and #exit! ([@ryz310](https://github.com/ryz310))
180
+ - [#181](https://github.com/ryz310/rubocop_challenger/pull/181) Remove waffle.io badge ([@ryz310](https://github.com/ryz310))
181
+ - [#185](https://github.com/ryz310/rubocop_challenger/pull/185) Improve code coverage and fix implements ([@ryz310](https://github.com/ryz310))
182
+ - [#186](https://github.com/ryz310/rubocop_challenger/pull/186) Use #abort instead of #exit! ([@ryz310](https://github.com/ryz310))
183
+ - [#192](https://github.com/ryz310/rubocop_challenger/pull/192) Extract with pr comet ([@ryz310](https://github.com/ryz310))
184
+ - [#216](https://github.com/ryz310/rubocop_challenger/pull/216) Use rainbow gem ([@ryz310](https://github.com/ryz310))
185
+ - [#218](https://github.com/ryz310/rubocop_challenger/pull/218) Add pull request to GitHub project on execute ([@ryz310](https://github.com/ryz310))
186
+ - [#219](https://github.com/ryz310/rubocop_challenger/pull/219) Add auto updating target gems ([@ryz310](https://github.com/ryz310))
187
+ - [#223](https://github.com/ryz310/rubocop_challenger/pull/223) Support base branch option ([@ryz310](https://github.com/ryz310))
188
+ - [#227](https://github.com/ryz310/rubocop_challenger/pull/227) Migrate circle ci version to 2.1 ([@ryz310](https://github.com/ryz310))
189
+ - [#239](https://github.com/ryz310/rubocop_challenger/pull/239) Introduce gem comet ([@ryz310](https://github.com/ryz310))
190
+ - [#294](https://github.com/ryz310/rubocop_challenger/pull/294) Update ruby-orbs orb to v1.6.0 ([@ryz310](https://github.com/ryz310))
191
+ - [#304](https://github.com/ryz310/rubocop_challenger/pull/304) Edit dependabot configuration ([@ryz310](https://github.com/ryz310))
192
+ - [#433](https://github.com/ryz310/rubocop_challenger/pull/433) Update `pr_comet` ([@ryz310](https://github.com/ryz310))
177
193
 
178
194
  ## v1.2.0 (Feb 27, 2019)
179
195
 
180
196
  ### Feature
181
197
 
182
- * Challenge incompleted list ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
198
+ - Challenge incompleted list ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
183
199
 
184
200
  ### Bugfix
185
201
 
186
- * Fix exit code when no more auto-correctable rule ([#175](https://github.com/ryz310/rubocop_challenger/pull/175))
202
+ - Fix exit code when no more auto-correctable rule ([#175](https://github.com/ryz310/rubocop_challenger/pull/175))
187
203
 
188
204
  ### Breaking Change
189
205
 
190
- * Remove "regenerate-rubocop-todo" option ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
206
+ - Remove "regenerate-rubocop-todo" option ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
191
207
 
192
208
  ## v1.1.2 (Feb 21, 2019)
193
209
 
194
210
  ### Feature
195
211
 
196
- * Re-generate .rubocop_todo.yml on pre-challenge ([#169](https://github.com/ryz310/rubocop_challenger/pull/169))
212
+ - Re-generate .rubocop_todo.yml on pre-challenge ([#169](https://github.com/ryz310/rubocop_challenger/pull/169))
197
213
 
198
214
  ## v1.1.1 (Jan 17, 2019)
199
215
 
200
216
  ### Bugfix
201
217
 
202
- * Fix encountering name error when finding a cop class by cop name ([#164](https://github.com/ryz310/rubocop_challenger/pull/164))
218
+ - Fix encountering name error when finding a cop class by cop name ([#164](https://github.com/ryz310/rubocop_challenger/pull/164))
203
219
 
204
220
  ### Misc
205
221
 
206
- * Configure Renovate ([#162](https://github.com/ryz310/rubocop_challenger/pull/162))
222
+ - Configure Renovate ([#162](https://github.com/ryz310/rubocop_challenger/pull/162))
207
223
 
208
224
  ## v1.1.0 (Dec 29, 2018)
209
225
 
210
226
  ### Feature
211
227
 
212
- * Support ruby 2.6 ([#156](https://github.com/ryz310/rubocop_challenger/pull/156))
228
+ - Support ruby 2.6 ([#156](https://github.com/ryz310/rubocop_challenger/pull/156))
213
229
 
214
230
  ### Misc
215
231
 
216
- * Change emoji on the commit message ([#158](https://github.com/ryz310/rubocop_challenger/pull/158))
232
+ - Change emoji on the commit message ([#158](https://github.com/ryz310/rubocop_challenger/pull/158))
217
233
 
218
234
  ## v1.0.0 (Dec 3, 2018)
219
235
 
@@ -223,160 +239,159 @@ Release v1.0.0 :tada:
223
239
 
224
240
  ### Security
225
241
 
226
- * Add quiet option on git push command ([#149](https://github.com/ryz310/rubocop_challenger/pull/149))
242
+ - Add quiet option on git push command ([#149](https://github.com/ryz310/rubocop_challenger/pull/149))
227
243
 
228
244
  ### Misc
229
245
 
230
- * Add yard testing flow ([#150](https://github.com/ryz310/rubocop_challenger/pull/150))
231
- * Add jailbreak script ([#151](https://github.com/ryz310/rubocop_challenger/pull/151))
246
+ - Add yard testing flow ([#150](https://github.com/ryz310/rubocop_challenger/pull/150))
247
+ - Add jailbreak script ([#151](https://github.com/ryz310/rubocop_challenger/pull/151))
232
248
 
233
249
  ## v1.0.0.pre3 (Nov 17, 2018)
234
250
 
235
251
  ### Feature
236
252
 
237
- * Output the result in the execution ([#139](https://github.com/ryz310/rubocop_challenger/pull/139))
238
- * Colorize error log ([#145](https://github.com/ryz310/rubocop_challenger/pull/145))
253
+ - Output the result in the execution ([#139](https://github.com/ryz310/rubocop_challenger/pull/139))
254
+ - Colorize error log ([#145](https://github.com/ryz310/rubocop_challenger/pull/145))
239
255
 
240
256
  ### Bugfix
241
257
 
242
- * Filter access token in the command logging ([#144](https://github.com/ryz310/rubocop_challenger/pull/144))
258
+ - Filter access token in the command logging ([#144](https://github.com/ryz310/rubocop_challenger/pull/144))
243
259
 
244
260
  ## v1.0.0.pre2 (Nov 15, 2018)
245
261
 
246
262
  ### Feature
247
263
 
248
- * Support private repository ([#132](https://github.com/ryz310/rubocop_challenger/pull/132))
249
- * Support old git version ([#133](https://github.com/ryz310/rubocop_challenger/pull/133))
264
+ - Support private repository ([#132](https://github.com/ryz310/rubocop_challenger/pull/132))
265
+ - Support old git version ([#133](https://github.com/ryz310/rubocop_challenger/pull/133))
250
266
 
251
267
  ### Misc
252
268
 
253
- * Add Github::Client#add_labels spec ([#131](https://github.com/ryz310/rubocop_challenger/pull/131))
254
- * Remove a unnecessary option ([#134](https://github.com/ryz310/rubocop_challenger/pull/134))
269
+ - Add Github::Client#add_labels spec ([#131](https://github.com/ryz310/rubocop_challenger/pull/131))
270
+ - Remove a unnecessary option ([#134](https://github.com/ryz310/rubocop_challenger/pull/134))
255
271
 
256
272
  ## v1.0.0.pre (Nov 13, 2018)
257
273
 
258
274
  ### Feature
259
275
 
260
- * Use octokit ([#121](https://github.com/ryz310/rubocop_challenger/pull/121))
276
+ - Use octokit ([#121](https://github.com/ryz310/rubocop_challenger/pull/121))
261
277
 
262
278
  ### Breaking Change
263
279
 
264
- * Change `--regenerate-rubocop-todo` option default value to true
280
+ - Change `--regenerate-rubocop-todo` option default value to true
265
281
 
266
282
  ### Misc
267
283
 
268
- * Modify gem version validator ([#127](https://github.com/ryz310/rubocop_challenger/pull/127))
284
+ - Modify gem version validator ([#127](https://github.com/ryz310/rubocop_challenger/pull/127))
269
285
 
270
286
  ## v0.5.2 (Nov 4, 2018)
271
287
 
272
288
  ### Misc
273
289
 
274
- * Install code climate ([#116](https://github.com/ryz310/rubocop_challenger/pull/116))
275
- * Fix coveralls badge URL ([#117](https://github.com/ryz310/rubocop_challenger/pull/117))
276
- * Uninstall coveralls ([#118](https://github.com/ryz310/rubocop_challenger/pull/118))
290
+ - Install code climate ([#116](https://github.com/ryz310/rubocop_challenger/pull/116))
291
+ - Fix coveralls badge URL ([#117](https://github.com/ryz310/rubocop_challenger/pull/117))
292
+ - Uninstall coveralls ([#118](https://github.com/ryz310/rubocop_challenger/pull/118))
277
293
 
278
294
  ## v0.5.1 (Nov 1, 2018)
279
295
 
280
296
  ### Misc
281
297
 
282
- * Style/MutableConstant at Tue Oct 30 23:30:33 UTC 2018 ([#106](https://github.com/ryz310/rubocop_challenger/pull/106))
283
- * Install coveralls ([#107](https://github.com/ryz310/rubocop_challenger/pull/107))
284
- * Definition of Metrics/BlockLength ([#109](https://github.com/ryz310/rubocop_challenger/pull/109))
285
- * Fix offense of RSpec/ExampleLength ([#110](https://github.com/ryz310/rubocop_challenger/pull/110))
286
- * Fix offense of Style/Documentation ([#111](https://github.com/ryz310/rubocop_challenger/pull/111))
287
- * Fix offense of Metrics/LineLength ([#112](https://github.com/ryz310/rubocop_challenger/pull/112))
288
- * Fix that testing target is wrong ([#113](https://github.com/ryz310/rubocop_challenger/pull/113))
298
+ - Style/MutableConstant at Tue Oct 30 23:30:33 UTC 2018 ([#106](https://github.com/ryz310/rubocop_challenger/pull/106))
299
+ - Install coveralls ([#107](https://github.com/ryz310/rubocop_challenger/pull/107))
300
+ - Definition of Metrics/BlockLength ([#109](https://github.com/ryz310/rubocop_challenger/pull/109))
301
+ - Fix offense of RSpec/ExampleLength ([#110](https://github.com/ryz310/rubocop_challenger/pull/110))
302
+ - Fix offense of Style/Documentation ([#111](https://github.com/ryz310/rubocop_challenger/pull/111))
303
+ - Fix offense of Metrics/LineLength ([#112](https://github.com/ryz310/rubocop_challenger/pull/112))
304
+ - Fix that testing target is wrong ([#113](https://github.com/ryz310/rubocop_challenger/pull/113))
289
305
 
290
306
  ## v0.5.0 (Oct 30, 2018)
291
307
 
292
308
  ### Feature
293
309
 
294
- * Use bundle exec ([#100](https://github.com/ryz310/rubocop_challenger/pull/100))
310
+ - Use bundle exec ([#100](https://github.com/ryz310/rubocop_challenger/pull/100))
295
311
 
296
312
  ### Breaking Change
297
313
 
298
- * Return example name ([#101](https://github.com/ryz310/rubocop_challenger/pull/101))
314
+ - Return example name ([#101](https://github.com/ryz310/rubocop_challenger/pull/101))
299
315
 
300
316
  ### Misc
301
317
 
302
- * Layout/AlignHash at Sun Oct 28 23:30:20 UTC 2018 ([#97](https://github.com/ryz310/rubocop_challenger/pull/97))
303
- * Add Rubocop Challenge example to the README.md ([#98](https://github.com/ryz310/rubocop_challenger/pull/98))
304
- * Update bundle when create release PR ([#103](https://github.com/ryz310/rubocop_challenger/pull/103))
318
+ - Layout/AlignHash at Sun Oct 28 23:30:20 UTC 2018 ([#97](https://github.com/ryz310/rubocop_challenger/pull/97))
319
+ - Add Rubocop Challenge example to the README.md ([#98](https://github.com/ryz310/rubocop_challenger/pull/98))
320
+ - Update bundle when create release PR ([#103](https://github.com/ryz310/rubocop_challenger/pull/103))
305
321
 
306
322
  ## v0.4.1 (Oct 28, 2018)
307
323
 
308
324
  ### Bugfix
309
325
 
310
- * Return status code 0 when exists no auto-correctable cop ([#91](https://github.com/ryz310/rubocop_challenger/pull/91))
311
- * Fix rubocop version mismatch ([#92](https://github.com/ryz310/rubocop_challenger/pull/92))
326
+ - Return status code 0 when exists no auto-correctable cop ([#91](https://github.com/ryz310/rubocop_challenger/pull/91))
327
+ - Fix rubocop version mismatch ([#92](https://github.com/ryz310/rubocop_challenger/pull/92))
312
328
 
313
329
  ### Misc
314
330
 
315
- * Style/RedundantSelf at Fri Oct 26 05:58:13 UTC 2018 ([#89](https://github.com/ryz310/rubocop_challenger/pull/89))
316
- * Layout/SpaceInsideBlockBraces at Sat Oct 27 23:30:21 UTC 2018 ([#93](https://github.com/ryz310/rubocop_challenger/pull/93))
331
+ - Style/RedundantSelf at Fri Oct 26 05:58:13 UTC 2018 ([#89](https://github.com/ryz310/rubocop_challenger/pull/89))
332
+ - Layout/SpaceInsideBlockBraces at Sat Oct 27 23:30:21 UTC 2018 ([#93](https://github.com/ryz310/rubocop_challenger/pull/93))
317
333
 
318
334
  ## v0.4.0 (Oct 26, 2018)
319
335
 
320
336
  ### Feature
321
337
 
322
- * Generate document from yardoc ([#86](https://github.com/ryz310/rubocop_challenger/pull/86))
338
+ - Generate document from yardoc ([#86](https://github.com/ryz310/rubocop_challenger/pull/86))
323
339
 
324
340
  ### Misc
325
341
 
326
- * Rake/create pr for version up ([#81](https://github.com/ryz310/rubocop_challenger/pull/81))
327
- * Style/RescueModifier at Wed Oct 24 23:30:21 UTC 2018 ([#82](https://github.com/ryz310/rubocop_challenger/pull/82))
342
+ - Rake/create pr for version up ([#81](https://github.com/ryz310/rubocop_challenger/pull/81))
343
+ - Style/RescueModifier at Wed Oct 24 23:30:21 UTC 2018 ([#82](https://github.com/ryz310/rubocop_challenger/pull/82))
328
344
 
329
345
  ## v0.3.1 (Oct 23, 2018)
330
346
 
331
347
  ### Feature
332
348
 
333
- * Modify default template ([#73](https://github.com/ryz310/rubocop_challenger/pull/73))
334
-
349
+ - Modify default template ([#73](https://github.com/ryz310/rubocop_challenger/pull/73))
335
350
 
336
351
  ## v0.3.0 (Oct 23, 2018)
337
352
 
338
353
  ### Feature
339
354
 
340
- * Add labels option ([#67](https://github.com/ryz310/rubocop_challenger/pull/67))
341
- * Add template option ([#70](https://github.com/ryz310/rubocop_challenger/pull/70))
355
+ - Add labels option ([#67](https://github.com/ryz310/rubocop_challenger/pull/67))
356
+ - Add template option ([#70](https://github.com/ryz310/rubocop_challenger/pull/70))
342
357
 
343
358
  ### Misc
344
359
 
345
- * Run rubocop challenge after release ([#68](https://github.com/ryz310/rubocop_challenger/pull/68))
360
+ - Run rubocop challenge after release ([#68](https://github.com/ryz310/rubocop_challenger/pull/68))
346
361
 
347
362
  ## v0.2.1 (Oct 23, 2019)
348
363
 
349
364
  ### Bugfix
350
365
 
351
- * Fix default PR template file path ([#64](https://github.com/ryz310/rubocop_challenger/pull/64))
366
+ - Fix default PR template file path ([#64](https://github.com/ryz310/rubocop_challenger/pull/64))
352
367
 
353
368
  ## v0.2.0 (Oct 23, 2018)
354
369
 
355
370
  ### Feature
356
371
 
357
- * Generate pr template ([#50](https://github.com/ryz310/rubocop_challenger/pull/50))
358
- * Add no-commit option ([#53](https://github.com/ryz310/rubocop_challenger/pull/53))
359
- * Return status code 1 when an error occurs ([#56](https://github.com/ryz310/rubocop_challenger/pull/56))
360
- * Add option which regenerate rubocop todo file ([#59](https://github.com/ryz310/rubocop_challenger/pull/59))
372
+ - Generate pr template ([#50](https://github.com/ryz310/rubocop_challenger/pull/50))
373
+ - Add no-commit option ([#53](https://github.com/ryz310/rubocop_challenger/pull/53))
374
+ - Return status code 1 when an error occurs ([#56](https://github.com/ryz310/rubocop_challenger/pull/56))
375
+ - Add option which regenerate rubocop todo file ([#59](https://github.com/ryz310/rubocop_challenger/pull/59))
361
376
 
362
377
  ### Misc
363
378
 
364
- * Add access token description ([#48](https://github.com/ryz310/rubocop_challenger/pull/48))
365
- * Add no document option to gem install command ([#51](https://github.com/ryz310/rubocop_challenger/pull/51))
379
+ - Add access token description ([#48](https://github.com/ryz310/rubocop_challenger/pull/48))
380
+ - Add no document option to gem install command ([#51](https://github.com/ryz310/rubocop_challenger/pull/51))
366
381
 
367
382
  ## v0.1.3 (Oct 21, 2018)
368
383
 
369
384
  ### Misc
370
385
 
371
- * Style/TrailingCommaInArrayLiteral at Fri Oct 19 23:30:18 UTC 2018 ([#34](https://github.com/ryz310/rubocop_challenger/pull/34))
372
- * Update readme ([#36](https://github.com/ryz310/rubocop_challenger/pull/36))
373
- * Add challenge class spec ([#42](https://github.com/ryz310/rubocop_challenger/pull/42))
386
+ - Style/TrailingCommaInArrayLiteral at Fri Oct 19 23:30:18 UTC 2018 ([#34](https://github.com/ryz310/rubocop_challenger/pull/34))
387
+ - Update readme ([#36](https://github.com/ryz310/rubocop_challenger/pull/36))
388
+ - Add challenge class spec ([#42](https://github.com/ryz310/rubocop_challenger/pull/42))
374
389
 
375
390
  ## v0.1.2 (Oct 19, 2018)
376
391
 
377
392
  ### Misc
378
393
 
379
- * Install from gem ([#28](https://github.com/ryz310/rubocop_challenger/pull/28))
394
+ - Install from gem ([#28](https://github.com/ryz310/rubocop_challenger/pull/28))
380
395
 
381
396
  ## v0.1.1 (Oct 19, 2018)
382
397
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop_challenger (2.6.0)
4
+ rubocop_challenger (2.7.0)
5
5
  pr_comet (~> 0.5.1)
6
6
  rainbow
7
7
  rubocop (>= 0.87)
@@ -16,7 +16,7 @@ PATH
16
16
  GEM
17
17
  remote: https://rubygems.org/
18
18
  specs:
19
- activesupport (6.1.4.7)
19
+ activesupport (6.1.5.1)
20
20
  concurrent-ruby (~> 1.0, >= 1.0.2)
21
21
  i18n (>= 1.6, < 2)
22
22
  minitest (>= 5.1)
@@ -27,7 +27,7 @@ GEM
27
27
  ast (2.4.2)
28
28
  byebug (11.1.3)
29
29
  coderay (1.1.3)
30
- concurrent-ruby (1.1.9)
30
+ concurrent-ruby (1.1.10)
31
31
  diff-lcs (1.5.0)
32
32
  docile (1.4.0)
33
33
  faraday (1.10.0)
@@ -61,8 +61,8 @@ GEM
61
61
  octokit (4.22.0)
62
62
  faraday (>= 0.9)
63
63
  sawyer (~> 0.8.0, >= 0.5.3)
64
- parallel (1.21.0)
65
- parser (3.1.1.0)
64
+ parallel (1.22.1)
65
+ parser (3.1.2.0)
66
66
  ast (~> 2.4.1)
67
67
  pr_comet (0.5.1)
68
68
  octokit
@@ -73,11 +73,11 @@ GEM
73
73
  pry-byebug (3.9.0)
74
74
  byebug (~> 11.0)
75
75
  pry (~> 0.13.0)
76
- public_suffix (4.0.6)
76
+ public_suffix (4.0.7)
77
77
  rack (2.2.3)
78
78
  rainbow (3.1.1)
79
79
  rake (13.0.6)
80
- regexp_parser (2.2.1)
80
+ regexp_parser (2.3.1)
81
81
  rexml (3.2.5)
82
82
  rspec (3.11.0)
83
83
  rspec-core (~> 3.11.0)
@@ -88,33 +88,33 @@ GEM
88
88
  rspec-expectations (3.11.0)
89
89
  diff-lcs (>= 1.2.0, < 2.0)
90
90
  rspec-support (~> 3.11.0)
91
- rspec-mocks (3.11.0)
91
+ rspec-mocks (3.11.1)
92
92
  diff-lcs (>= 1.2.0, < 2.0)
93
93
  rspec-support (~> 3.11.0)
94
94
  rspec-support (3.11.0)
95
95
  rspec_junit_formatter (0.5.1)
96
96
  rspec-core (>= 2, < 4, != 2.12.0)
97
- rubocop (1.26.0)
97
+ rubocop (1.29.0)
98
98
  parallel (~> 1.10)
99
99
  parser (>= 3.1.0.0)
100
100
  rainbow (>= 2.2.2, < 4.0)
101
101
  regexp_parser (>= 1.8, < 3.0)
102
- rexml
103
- rubocop-ast (>= 1.16.0, < 2.0)
102
+ rexml (>= 3.2.5, < 4.0)
103
+ rubocop-ast (>= 1.17.0, < 2.0)
104
104
  ruby-progressbar (~> 1.7)
105
105
  unicode-display_width (>= 1.4.0, < 3.0)
106
- rubocop-ast (1.16.0)
106
+ rubocop-ast (1.17.0)
107
107
  parser (>= 3.1.1.0)
108
108
  rubocop-performance (1.13.3)
109
109
  rubocop (>= 1.7.0, < 2.0)
110
110
  rubocop-ast (>= 0.4.0)
111
- rubocop-rails (2.13.2)
111
+ rubocop-rails (2.14.2)
112
112
  activesupport (>= 4.2.0)
113
113
  rack (>= 1.1)
114
114
  rubocop (>= 1.7.0, < 2.0)
115
115
  rubocop-rake (0.6.0)
116
116
  rubocop (~> 1.0)
117
- rubocop-rspec (2.9.0)
117
+ rubocop-rspec (2.10.0)
118
118
  rubocop (~> 1.19)
119
119
  rubocop-thread_safety (0.4.4)
120
120
  rubocop (>= 0.53.0)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RubocopChallenger
4
- VERSION = '2.6.0'
4
+ VERSION = '2.7.0'
5
5
  end
@@ -3,10 +3,10 @@
3
3
  [<%= title %>](<%= rubydoc_url %>)
4
4
 
5
5
  <% if safe_autocorrect? -%>
6
- **Safe autocorrect: true**
6
+ **Safe autocorrect: Yes**
7
7
  :white_check_mark: The auto-correct a cop does is safe (equivalent) by design.
8
8
  <% else -%>
9
- **Safe autocorrect: false**
9
+ **Safe autocorrect: No**
10
10
  :warning: The auto-correct a cop can yield false positives by design.
11
11
  <% end -%>
12
12
 
@@ -3,10 +3,10 @@
3
3
  [<%= title %>](<%= rubydoc_url %>)
4
4
 
5
5
  <% if safe_autocorrect? -%>
6
- **Safe autocorrect: true**
6
+ **Safe autocorrect: Yes**
7
7
  :white_check_mark: The auto-correct a cop does is safe (equivalent) by design.
8
8
  <% else -%>
9
- **Safe autocorrect: false**
9
+ **Safe autocorrect: No**
10
10
  :warning: The auto-correct a cop can yield false positives by design.
11
11
  <% end -%>
12
12
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop_challenger
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.0
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ryosuke_sato
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-03-10 00:00:00.000000000 Z
11
+ date: 2022-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pr_comet
@@ -307,7 +307,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
307
307
  - !ruby/object:Gem::Version
308
308
  version: '0'
309
309
  requirements: []
310
- rubygems_version: 3.2.32
310
+ rubygems_version: 3.3.11
311
311
  signing_key:
312
312
  specification_version: 4
313
313
  summary: Make a clean your rubocop_todo.yml with CI