rubocop_challenger 2.0.0.pre10 → 2.3.0
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 +19 -11
- data/.dependabot/config.yml +18 -0
- data/.gem_comet.yml +13 -1
- data/.rubocop.yml +10 -2
- data/.rubocop_challenge.yml +3 -0
- data/.rubocop_todo.yml +1 -1
- data/CHANGELOG.md +322 -4
- data/Gemfile.lock +88 -54
- data/README.md +21 -33
- data/challenger.gemspec +8 -4
- data/lib/rubocop_challenger.rb +1 -0
- data/lib/rubocop_challenger/bundler/command.rb +5 -1
- data/lib/rubocop_challenger/cli.rb +9 -0
- data/lib/rubocop_challenger/github/pr_template.rb +4 -0
- data/lib/rubocop_challenger/go.rb +39 -24
- data/lib/rubocop_challenger/pull_request.rb +6 -3
- data/lib/rubocop_challenger/rubocop/challenge.rb +6 -5
- data/lib/rubocop_challenger/rubocop/command.rb +6 -2
- data/lib/rubocop_challenger/rubocop/rule.rb +1 -1
- data/lib/rubocop_challenger/rubocop/yardoc.rb +36 -20
- data/lib/rubocop_challenger/version.rb +1 -1
- data/lib/templates/checklist.md.erb +8 -0
- data/lib/templates/default.md.erb +8 -0
- data/lib/templates/error.md.erb +1 -1
- metadata +48 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bde919f42750c43651a3ba58f00ef400b79f7cea3f0c2ff1b64881f6ee102a8d
|
4
|
+
data.tar.gz: ff457584a6703667d588d6f744762f1219f23a64eee85c0e09fdd471fef734ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82858f597d72c55790f1766d8bfb804afd74aac984579d83e05e4fc2c5db0c36a8b6259c614f4155b4e636963aeb19e0ce1c09ea7f709f594500838fec5615e2
|
7
|
+
data.tar.gz: d36e502a7cc7aace9ed87440cc19b8f1b025141c8c769787f85fda86285b903793458cbf96cbe32580af57098f35e361adb4e253d8c7770c3709a536e8b10e92
|
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.
|
8
|
+
ruby-orbs: sue445/ruby-orbs@1.6.2
|
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.
|
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:
|
@@ -41,7 +41,7 @@ commands:
|
|
41
41
|
- code-climate/format-coverage:
|
42
42
|
input-type: simplecov
|
43
43
|
prefix: $(readlink -f .)
|
44
|
-
coverage-file: coverage
|
44
|
+
coverage-file: coverage/coverage.json
|
45
45
|
output: coverage/codeclimate.$CIRCLE_BUILD_NUM.json
|
46
46
|
- persist_to_workspace:
|
47
47
|
root: coverage
|
@@ -128,6 +128,9 @@ commands:
|
|
128
128
|
<<: *ruby_version
|
129
129
|
steps:
|
130
130
|
- checkout
|
131
|
+
- run:
|
132
|
+
name: Install Bundler 2.x
|
133
|
+
command: gem install bundler:2.1.4
|
131
134
|
- ruby-orbs/bundle-install:
|
132
135
|
cache_key_prefix: v1-dependencies-<< parameters.ruby_version >>
|
133
136
|
test_and_build:
|
@@ -156,7 +159,7 @@ jobs:
|
|
156
159
|
- code-climate/install
|
157
160
|
- code-climate/sum-coverage:
|
158
161
|
input: codeclimate.*.json
|
159
|
-
parts:
|
162
|
+
parts: 5
|
160
163
|
- code-climate/upload-coverage
|
161
164
|
rubocop:
|
162
165
|
executor: default
|
@@ -189,15 +192,18 @@ workflows:
|
|
189
192
|
|
190
193
|
commit:
|
191
194
|
jobs:
|
192
|
-
- build:
|
193
|
-
name: build_on_ruby_2.4
|
194
|
-
ruby_version: '2.4'
|
195
195
|
- build:
|
196
196
|
name: build_on_ruby_2.5
|
197
197
|
ruby_version: '2.5'
|
198
198
|
- build:
|
199
199
|
name: build_on_ruby_2.6
|
200
200
|
ruby_version: '2.6'
|
201
|
+
- build:
|
202
|
+
name: build_on_ruby_2.7
|
203
|
+
ruby_version: '2.7'
|
204
|
+
- build:
|
205
|
+
name: build_on_ruby_3.0
|
206
|
+
ruby_version: '3.0'
|
201
207
|
- build:
|
202
208
|
name: build_on_ruby_latest
|
203
209
|
ruby_version: 'latest'
|
@@ -206,16 +212,18 @@ workflows:
|
|
206
212
|
- integration_testing
|
207
213
|
- upload-coverage:
|
208
214
|
requires:
|
209
|
-
- build_on_ruby_2.4
|
210
215
|
- build_on_ruby_2.5
|
211
216
|
- build_on_ruby_2.6
|
217
|
+
- build_on_ruby_2.7
|
218
|
+
- build_on_ruby_3.0
|
212
219
|
- build_on_ruby_latest
|
213
220
|
- release:
|
214
221
|
context: RubyGems API Key
|
215
222
|
requires:
|
216
|
-
- build_on_ruby_2.4
|
217
223
|
- build_on_ruby_2.5
|
218
224
|
- build_on_ruby_2.6
|
225
|
+
- build_on_ruby_2.7
|
226
|
+
- build_on_ruby_3.0
|
219
227
|
- build_on_ruby_latest
|
220
228
|
- rubocop
|
221
229
|
filters:
|
@@ -0,0 +1,18 @@
|
|
1
|
+
version: 1
|
2
|
+
update_configs:
|
3
|
+
- package_manager: "ruby:bundler"
|
4
|
+
directory: "/"
|
5
|
+
update_schedule: "live"
|
6
|
+
default_reviewers:
|
7
|
+
- "ryz310"
|
8
|
+
default_assignees:
|
9
|
+
- "ryz310"
|
10
|
+
default_labels:
|
11
|
+
- "dependabot"
|
12
|
+
automerged_updates:
|
13
|
+
- match:
|
14
|
+
dependency_type: "development"
|
15
|
+
update_type: "all"
|
16
|
+
- match:
|
17
|
+
dependency_type: "production"
|
18
|
+
update_type: "semver:patch"
|
data/.gem_comet.yml
CHANGED
@@ -1,12 +1,24 @@
|
|
1
1
|
# [Usage]
|
2
2
|
#
|
3
3
|
# $ gem install gem_comet
|
4
|
+
# $ gem_comet init
|
4
5
|
# $ gem_comet release {version number, like as "1.2.3"}
|
6
|
+
# $ gem_comet changelog
|
7
|
+
# $ gem_comet versions
|
5
8
|
|
6
|
-
version: 1.
|
9
|
+
version: 1.2
|
7
10
|
|
8
11
|
release:
|
9
12
|
base_branch: master
|
10
13
|
release_branch: production
|
11
14
|
version_file_path: lib/rubocop_challenger/version.rb
|
12
15
|
changelog_file_path: CHANGELOG.md # optional
|
16
|
+
changelog:
|
17
|
+
categories:
|
18
|
+
- Feature
|
19
|
+
- Bugfix
|
20
|
+
- Security
|
21
|
+
- Breaking Change
|
22
|
+
- Rubocop Challenge
|
23
|
+
- Dependabot
|
24
|
+
- Misc
|
data/.rubocop.yml
CHANGED
@@ -1,21 +1,29 @@
|
|
1
1
|
require:
|
2
2
|
- rubocop-performance
|
3
|
+
- rubocop-rake
|
3
4
|
- rubocop-rspec
|
4
5
|
|
5
6
|
inherit_from: .rubocop_todo.yml
|
6
7
|
|
7
8
|
AllCops:
|
8
|
-
TargetRubyVersion: 2.
|
9
|
+
TargetRubyVersion: 2.5
|
10
|
+
NewCops: enable
|
9
11
|
|
10
12
|
Metrics/BlockLength:
|
11
13
|
Exclude:
|
12
14
|
- 'challenger.gemspec'
|
13
15
|
- 'spec/**/*'
|
14
16
|
|
17
|
+
Naming/VariableNumber:
|
18
|
+
EnforcedStyle: snake_case
|
19
|
+
|
15
20
|
# For integration testing
|
16
21
|
RSpec/MultipleExpectations:
|
17
22
|
Exclude:
|
18
|
-
- 'spec/rubocop_challenger/cli_spec.rb'
|
23
|
+
- 'spec/lib/rubocop_challenger/cli_spec.rb'
|
24
|
+
|
25
|
+
RSpec/MultipleMemoizedHelpers:
|
26
|
+
Max: 10
|
19
27
|
|
20
28
|
RSpec/NestedGroups:
|
21
29
|
Max: 4
|
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
|
3
|
+
# using RuboCop version 1.10.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,12 +1,330 @@
|
|
1
1
|
# Change log
|
2
2
|
|
3
|
-
##
|
3
|
+
## v2.3.0 (Feb 23, 2021)
|
4
4
|
|
5
5
|
### Feature
|
6
6
|
|
7
|
-
* Add
|
7
|
+
* [#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))
|
8
|
+
|
9
|
+
### Rubocop Challenge
|
10
|
+
|
11
|
+
* [#464](https://github.com/ryz310/rubocop_challenger/pull/464) Re-generate .rubocop_todo.yml with RuboCop v1.10.0 ([@ryz310](https://github.com/ryz310))
|
12
|
+
|
13
|
+
### Dependabot
|
14
|
+
|
15
|
+
* [#453](https://github.com/ryz310/rubocop_challenger/pull/453) ryz310/dependabot/bundler/thor-1.1.0 ([@ryz310](https://github.com/ryz310))
|
16
|
+
* [#457](https://github.com/ryz310/rubocop_challenger/pull/457) ryz310/dependabot/bundler/rubocop-1.9.1 ([@ryz310](https://github.com/ryz310))
|
17
|
+
* [#461](https://github.com/ryz310/rubocop_challenger/pull/461) Update ruby-orbs orb to v1.6.2 ([@ryz310](https://github.com/ryz310))
|
18
|
+
|
19
|
+
## v2.2.0 (Jan 11, 2021)
|
20
|
+
|
21
|
+
### Feature
|
22
|
+
|
23
|
+
* [#449](https://github.com/ryz310/rubocop_challenger/pull/449) Add verbose option ([@ryz310](https://github.com/ryz310))
|
24
|
+
|
25
|
+
### Dependabot
|
26
|
+
|
27
|
+
* [#447](https://github.com/ryz310/rubocop_challenger/pull/447) ryz310/dependabot/bundler/rubocop-1.8.1 ([@ryz310](https://github.com/ryz310))
|
28
|
+
|
29
|
+
## v2.1.0 (Jan 11, 2021)
|
30
|
+
|
31
|
+
### Feature
|
32
|
+
|
33
|
+
* [#441](https://github.com/ryz310/rubocop_challenger/pull/441) Improve PR description generation ([@ryz310](https://github.com/ryz310))
|
34
|
+
|
35
|
+
### Rubocop Challenge
|
36
|
+
|
37
|
+
* [#442](https://github.com/ryz310/rubocop_challenger/pull/442) Re-generate .rubocop_todo.yml with RuboCop v1.8.0 ([@ryz310](https://github.com/ryz310))
|
38
|
+
|
39
|
+
### Dependabot
|
40
|
+
|
41
|
+
* [#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))
|
42
|
+
|
43
|
+
## v2.0.1 (Jan 06, 2021)
|
44
|
+
|
45
|
+
### Bugfix
|
46
|
+
|
47
|
+
* [#437](https://github.com/ryz310/rubocop_challenger/pull/437) Fix keyword argument expanding for Ruby 3.0 ([@ryz310](https://github.com/ryz310))
|
48
|
+
|
49
|
+
## v2.0.0 (Jan 04, 2021)
|
50
|
+
|
51
|
+
### Feature
|
52
|
+
|
53
|
+
* [#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))
|
54
|
+
* [#187](https://github.com/ryz310/rubocop_challenger/pull/187) Bundle update rubocop ([@ryz310](https://github.com/ryz310))
|
55
|
+
* [#208](https://github.com/ryz310/rubocop_challenger/pull/208) Render links for release note and compare page ([@ryz310](https://github.com/ryz310))
|
56
|
+
* [#217](https://github.com/ryz310/rubocop_challenger/pull/217) Support auto gem config options ([@ryz310](https://github.com/ryz310))
|
57
|
+
* [#250](https://github.com/ryz310/rubocop_challenger/pull/250) Add error reporting feature ([@ryz310](https://github.com/ryz310))
|
58
|
+
* [#253](https://github.com/ryz310/rubocop_challenger/pull/253) Add information of the rubocop challenge ([@ryz310](https://github.com/ryz310))
|
59
|
+
* [#288](https://github.com/ryz310/rubocop_challenger/pull/288) Support ruby 2.7 ([@ryz310](https://github.com/ryz310))
|
60
|
+
* [#362](https://github.com/ryz310/rubocop_challenger/pull/362) Use rubocop auto correct all ([@ryz310](https://github.com/ryz310))
|
61
|
+
* [#398](https://github.com/ryz310/rubocop_challenger/pull/398) Add auto correct safe option ([@ryz310](https://github.com/ryz310))
|
62
|
+
* [#432](https://github.com/ryz310/rubocop_challenger/pull/432) Support ruby 3.0 ([@ryz310](https://github.com/ryz310))
|
63
|
+
|
64
|
+
### Bugfix
|
65
|
+
|
66
|
+
* [#212](https://github.com/ryz310/rubocop_challenger/pull/212) Fix the version of pr_comet ([@ryz310](https://github.com/ryz310))
|
67
|
+
* [#231](https://github.com/ryz310/rubocop_challenger/pull/231) Fix the way of requirements loading for optional dependencies ([@ryz310](https://github.com/ryz310))
|
68
|
+
* [#238](https://github.com/ryz310/rubocop_challenger/pull/238) Fix/load error of the updated gems ([@ryz310](https://github.com/ryz310))
|
69
|
+
* [#363](https://github.com/ryz310/rubocop_challenger/pull/363) Require rubocop-rails gem ([@ryz310](https://github.com/ryz310))
|
70
|
+
|
71
|
+
### Breaking Change
|
72
|
+
|
73
|
+
* [#180](https://github.com/ryz310/rubocop_challenger/pull/180) Farewell ruby 2.3 ([@ryz310](https://github.com/ryz310))
|
74
|
+
* [#184](https://github.com/ryz310/rubocop_challenger/pull/184) Remove base branch option ([@ryz310](https://github.com/ryz310))
|
75
|
+
* [#396](https://github.com/ryz310/rubocop_challenger/pull/396) End of support for Ruby 2.4 ([@ryz310](https://github.com/ryz310))
|
76
|
+
|
77
|
+
### Rubocop Challenge
|
78
|
+
|
79
|
+
* [#228](https://github.com/ryz310/rubocop_challenger/pull/228) Style/WordArray-20190625233039 ([@ryz310](https://github.com/ryz310))
|
80
|
+
* [#235](https://github.com/ryz310/rubocop_challenger/pull/235) Performance/RegexpMatch-20190729233033 ([@ryz310](https://github.com/ryz310))
|
81
|
+
* [#236](https://github.com/ryz310/rubocop_challenger/pull/236) Layout/SpaceAroundOperators-20190731233025 ([@ryz310](https://github.com/ryz310))
|
82
|
+
* [#317](https://github.com/ryz310/rubocop_challenger/pull/317) Performance/StartWith-20200523233027 ([@ryz310](https://github.com/ryz310))
|
83
|
+
* [#427](https://github.com/ryz310/rubocop_challenger/pull/427) Re-generate .rubocop_todo.yml with RuboCop v1.7.0 ([@ryz310](https://github.com/ryz310))
|
84
|
+
|
85
|
+
### Dependabot
|
86
|
+
|
87
|
+
* [#242](https://github.com/ryz310/rubocop_challenger/pull/242) ryz310/dependabot/bundler/rake-tw-13.0 ([@ryz310](https://github.com/ryz310))
|
88
|
+
* [#244](https://github.com/ryz310/rubocop_challenger/pull/244) ryz310/dependabot/bundler/simplecov-0.17.1 ([@ryz310](https://github.com/ryz310))
|
89
|
+
* [#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))
|
90
|
+
* [#271](https://github.com/ryz310/rubocop_challenger/pull/271) Bump thor from 1.0.0 to 1.0.1 ([@ryz310](https://github.com/ryz310))
|
91
|
+
* [#303](https://github.com/ryz310/rubocop_challenger/pull/303) ryz310/dependabot/bundler/pry-byebug-3.9.0 ([@ryz310](https://github.com/ryz310))
|
92
|
+
* [#376](https://github.com/ryz310/rubocop_challenger/pull/376) ryz310/dependabot/bundler/rspec-3.10.0 ([@ryz310](https://github.com/ryz310))
|
93
|
+
* [#414](https://github.com/ryz310/rubocop_challenger/pull/414) ryz310/dependabot/bundler/rubocop-rspec-2.0.1 ([@ryz310](https://github.com/ryz310))
|
94
|
+
* [#421](https://github.com/ryz310/rubocop_challenger/pull/421) ryz310/dependabot/bundler/rubocop-1.6.1 ([@ryz310](https://github.com/ryz310))
|
95
|
+
* [#423](https://github.com/ryz310/rubocop_challenger/pull/423) ryz310/dependabot/bundler/rubocop-rails-2.9.1 ([@ryz310](https://github.com/ryz310))
|
96
|
+
* [#426](https://github.com/ryz310/rubocop_challenger/pull/426) ryz310/dependabot/bundler/rake-13.0.3 ([@ryz310](https://github.com/ryz310))
|
97
|
+
* [#428](https://github.com/ryz310/rubocop_challenger/pull/428) ryz310/dependabot/bundler/yard-0.9.26 ([@ryz310](https://github.com/ryz310))
|
98
|
+
* [#431](https://github.com/ryz310/rubocop_challenger/pull/431) ryz310/dependabot/bundler/rubocop-performance-1.9.2 ([@ryz310](https://github.com/ryz310))
|
99
|
+
|
100
|
+
### Security
|
101
|
+
|
102
|
+
* [#230](https://github.com/ryz310/rubocop_challenger/pull/230) Bump yard from 0.9.19 to 0.9.20 ([@ryz310](https://github.com/ryz310))
|
103
|
+
|
104
|
+
### Misc
|
105
|
+
|
106
|
+
* [#178](https://github.com/ryz310/rubocop_challenger/pull/178) Use #abort instead of #puts and #exit! ([@ryz310](https://github.com/ryz310))
|
107
|
+
* [#181](https://github.com/ryz310/rubocop_challenger/pull/181) Remove waffle.io badge ([@ryz310](https://github.com/ryz310))
|
108
|
+
* [#185](https://github.com/ryz310/rubocop_challenger/pull/185) Improve code coverage and fix implements ([@ryz310](https://github.com/ryz310))
|
109
|
+
* [#186](https://github.com/ryz310/rubocop_challenger/pull/186) Use #abort instead of #exit! ([@ryz310](https://github.com/ryz310))
|
110
|
+
* [#192](https://github.com/ryz310/rubocop_challenger/pull/192) Extract with pr comet ([@ryz310](https://github.com/ryz310))
|
111
|
+
* [#216](https://github.com/ryz310/rubocop_challenger/pull/216) Use rainbow gem ([@ryz310](https://github.com/ryz310))
|
112
|
+
* [#218](https://github.com/ryz310/rubocop_challenger/pull/218) Add pull request to GitHub project on execute ([@ryz310](https://github.com/ryz310))
|
113
|
+
* [#219](https://github.com/ryz310/rubocop_challenger/pull/219) Add auto updating target gems ([@ryz310](https://github.com/ryz310))
|
114
|
+
* [#223](https://github.com/ryz310/rubocop_challenger/pull/223) Support base branch option ([@ryz310](https://github.com/ryz310))
|
115
|
+
* [#227](https://github.com/ryz310/rubocop_challenger/pull/227) Migrate circle ci version to 2.1 ([@ryz310](https://github.com/ryz310))
|
116
|
+
* [#239](https://github.com/ryz310/rubocop_challenger/pull/239) Introduce gem comet ([@ryz310](https://github.com/ryz310))
|
117
|
+
* [#294](https://github.com/ryz310/rubocop_challenger/pull/294) Update ruby-orbs orb to v1.6.0 ([@ryz310](https://github.com/ryz310))
|
118
|
+
* [#304](https://github.com/ryz310/rubocop_challenger/pull/304) Edit dependabot configuration ([@ryz310](https://github.com/ryz310))
|
119
|
+
* [#433](https://github.com/ryz310/rubocop_challenger/pull/433) Update `pr_comet` ([@ryz310](https://github.com/ryz310))
|
120
|
+
|
121
|
+
## v1.2.0 (Feb 27, 2019)
|
122
|
+
|
123
|
+
### Feature
|
124
|
+
|
125
|
+
* Challenge incompleted list ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
|
126
|
+
|
127
|
+
### Bugfix
|
128
|
+
|
129
|
+
* Fix exit code when no more auto-correctable rule ([#175](https://github.com/ryz310/rubocop_challenger/pull/175))
|
130
|
+
|
131
|
+
### Breaking Change
|
132
|
+
|
133
|
+
* Remove "regenerate-rubocop-todo" option ([#170](https://github.com/ryz310/rubocop_challenger/pull/170))
|
134
|
+
|
135
|
+
## v1.1.2 (Feb 21, 2019)
|
136
|
+
|
137
|
+
### Feature
|
138
|
+
|
139
|
+
* Re-generate .rubocop_todo.yml on pre-challenge ([#169](https://github.com/ryz310/rubocop_challenger/pull/169))
|
140
|
+
|
141
|
+
## v1.1.1 (Jan 17, 2019)
|
142
|
+
|
143
|
+
### Bugfix
|
144
|
+
|
145
|
+
* Fix encountering name error when finding a cop class by cop name ([#164](https://github.com/ryz310/rubocop_challenger/pull/164))
|
146
|
+
|
147
|
+
### Misc
|
148
|
+
|
149
|
+
* Configure Renovate ([#162](https://github.com/ryz310/rubocop_challenger/pull/162))
|
150
|
+
|
151
|
+
## v1.1.0 (Dec 29, 2018)
|
152
|
+
|
153
|
+
### Feature
|
154
|
+
|
155
|
+
* Support ruby 2.6 ([#156](https://github.com/ryz310/rubocop_challenger/pull/156))
|
156
|
+
|
157
|
+
### Misc
|
158
|
+
|
159
|
+
* Change emoji on the commit message ([#158](https://github.com/ryz310/rubocop_challenger/pull/158))
|
160
|
+
|
161
|
+
## v1.0.0 (Dec 3, 2018)
|
162
|
+
|
163
|
+
Release v1.0.0 :tada:
|
164
|
+
|
165
|
+
## v1.0.0.pre4 (Nov 26, 2018)
|
166
|
+
|
167
|
+
### Security
|
168
|
+
|
169
|
+
* Add quiet option on git push command ([#149](https://github.com/ryz310/rubocop_challenger/pull/149))
|
170
|
+
|
171
|
+
### Misc
|
172
|
+
|
173
|
+
* Add yard testing flow ([#150](https://github.com/ryz310/rubocop_challenger/pull/150))
|
174
|
+
* Add jailbreak script ([#151](https://github.com/ryz310/rubocop_challenger/pull/151))
|
175
|
+
|
176
|
+
## v1.0.0.pre3 (Nov 17, 2018)
|
177
|
+
|
178
|
+
### Feature
|
179
|
+
|
180
|
+
* Output the result in the execution ([#139](https://github.com/ryz310/rubocop_challenger/pull/139))
|
181
|
+
* Colorize error log ([#145](https://github.com/ryz310/rubocop_challenger/pull/145))
|
182
|
+
|
183
|
+
### Bugfix
|
184
|
+
|
185
|
+
* Filter access token in the command logging ([#144](https://github.com/ryz310/rubocop_challenger/pull/144))
|
186
|
+
|
187
|
+
## v1.0.0.pre2 (Nov 15, 2018)
|
188
|
+
|
189
|
+
### Feature
|
190
|
+
|
191
|
+
* Support private repository ([#132](https://github.com/ryz310/rubocop_challenger/pull/132))
|
192
|
+
* Support old git version ([#133](https://github.com/ryz310/rubocop_challenger/pull/133))
|
193
|
+
|
194
|
+
### Misc
|
195
|
+
|
196
|
+
* Add Github::Client#add_labels spec ([#131](https://github.com/ryz310/rubocop_challenger/pull/131))
|
197
|
+
* Remove a unnecessary option ([#134](https://github.com/ryz310/rubocop_challenger/pull/134))
|
198
|
+
|
199
|
+
## v1.0.0.pre (Nov 13, 2018)
|
200
|
+
|
201
|
+
### Feature
|
202
|
+
|
203
|
+
* Use octokit ([#121](https://github.com/ryz310/rubocop_challenger/pull/121))
|
204
|
+
|
205
|
+
### Breaking Change
|
206
|
+
|
207
|
+
* Change `--regenerate-rubocop-todo` option default value to true
|
208
|
+
|
209
|
+
### Misc
|
210
|
+
|
211
|
+
* Modify gem version validator ([#127](https://github.com/ryz310/rubocop_challenger/pull/127))
|
212
|
+
|
213
|
+
## v0.5.2 (Nov 4, 2018)
|
8
214
|
|
9
215
|
### Misc
|
10
216
|
|
11
|
-
*
|
12
|
-
*
|
217
|
+
* Install code climate ([#116](https://github.com/ryz310/rubocop_challenger/pull/116))
|
218
|
+
* Fix coveralls badge URL ([#117](https://github.com/ryz310/rubocop_challenger/pull/117))
|
219
|
+
* Uninstall coveralls ([#118](https://github.com/ryz310/rubocop_challenger/pull/118))
|
220
|
+
|
221
|
+
## v0.5.1 (Nov 1, 2018)
|
222
|
+
|
223
|
+
### Misc
|
224
|
+
|
225
|
+
* Style/MutableConstant at Tue Oct 30 23:30:33 UTC 2018 ([#106](https://github.com/ryz310/rubocop_challenger/pull/106))
|
226
|
+
* Install coveralls ([#107](https://github.com/ryz310/rubocop_challenger/pull/107))
|
227
|
+
* Definition of Metrics/BlockLength ([#109](https://github.com/ryz310/rubocop_challenger/pull/109))
|
228
|
+
* Fix offense of RSpec/ExampleLength ([#110](https://github.com/ryz310/rubocop_challenger/pull/110))
|
229
|
+
* Fix offense of Style/Documentation ([#111](https://github.com/ryz310/rubocop_challenger/pull/111))
|
230
|
+
* Fix offense of Metrics/LineLength ([#112](https://github.com/ryz310/rubocop_challenger/pull/112))
|
231
|
+
* Fix that testing target is wrong ([#113](https://github.com/ryz310/rubocop_challenger/pull/113))
|
232
|
+
|
233
|
+
## v0.5.0 (Oct 30, 2018)
|
234
|
+
|
235
|
+
### Feature
|
236
|
+
|
237
|
+
* Use bundle exec ([#100](https://github.com/ryz310/rubocop_challenger/pull/100))
|
238
|
+
|
239
|
+
### Breaking Change
|
240
|
+
|
241
|
+
* Return example name ([#101](https://github.com/ryz310/rubocop_challenger/pull/101))
|
242
|
+
|
243
|
+
### Misc
|
244
|
+
|
245
|
+
* Layout/AlignHash at Sun Oct 28 23:30:20 UTC 2018 ([#97](https://github.com/ryz310/rubocop_challenger/pull/97))
|
246
|
+
* Add Rubocop Challenge example to the README.md ([#98](https://github.com/ryz310/rubocop_challenger/pull/98))
|
247
|
+
* Update bundle when create release PR ([#103](https://github.com/ryz310/rubocop_challenger/pull/103))
|
248
|
+
|
249
|
+
## v0.4.1 (Oct 28, 2018)
|
250
|
+
|
251
|
+
### Bugfix
|
252
|
+
|
253
|
+
* Return status code 0 when exists no auto-correctable cop ([#91](https://github.com/ryz310/rubocop_challenger/pull/91))
|
254
|
+
* Fix rubocop version mismatch ([#92](https://github.com/ryz310/rubocop_challenger/pull/92))
|
255
|
+
|
256
|
+
### Misc
|
257
|
+
|
258
|
+
* Style/RedundantSelf at Fri Oct 26 05:58:13 UTC 2018 ([#89](https://github.com/ryz310/rubocop_challenger/pull/89))
|
259
|
+
* Layout/SpaceInsideBlockBraces at Sat Oct 27 23:30:21 UTC 2018 ([#93](https://github.com/ryz310/rubocop_challenger/pull/93))
|
260
|
+
|
261
|
+
## v0.4.0 (Oct 26, 2018)
|
262
|
+
|
263
|
+
### Feature
|
264
|
+
|
265
|
+
* Generate document from yardoc ([#86](https://github.com/ryz310/rubocop_challenger/pull/86))
|
266
|
+
|
267
|
+
### Misc
|
268
|
+
|
269
|
+
* Rake/create pr for version up ([#81](https://github.com/ryz310/rubocop_challenger/pull/81))
|
270
|
+
* Style/RescueModifier at Wed Oct 24 23:30:21 UTC 2018 ([#82](https://github.com/ryz310/rubocop_challenger/pull/82))
|
271
|
+
|
272
|
+
## v0.3.1 (Oct 23, 2018)
|
273
|
+
|
274
|
+
### Feature
|
275
|
+
|
276
|
+
* Modify default template ([#73](https://github.com/ryz310/rubocop_challenger/pull/73))
|
277
|
+
|
278
|
+
|
279
|
+
## v0.3.0 (Oct 23, 2018)
|
280
|
+
|
281
|
+
### Feature
|
282
|
+
|
283
|
+
* Add labels option ([#67](https://github.com/ryz310/rubocop_challenger/pull/67))
|
284
|
+
* Add template option ([#70](https://github.com/ryz310/rubocop_challenger/pull/70))
|
285
|
+
|
286
|
+
### Misc
|
287
|
+
|
288
|
+
* Run rubocop challenge after release ([#68](https://github.com/ryz310/rubocop_challenger/pull/68))
|
289
|
+
|
290
|
+
## v0.2.1 (Oct 23, 2019)
|
291
|
+
|
292
|
+
### Bugfix
|
293
|
+
|
294
|
+
* Fix default PR template file path ([#64](https://github.com/ryz310/rubocop_challenger/pull/64))
|
295
|
+
|
296
|
+
## v0.2.0 (Oct 23, 2018)
|
297
|
+
|
298
|
+
### Feature
|
299
|
+
|
300
|
+
* Generate pr template ([#50](https://github.com/ryz310/rubocop_challenger/pull/50))
|
301
|
+
* Add no-commit option ([#53](https://github.com/ryz310/rubocop_challenger/pull/53))
|
302
|
+
* Return status code 1 when an error occurs ([#56](https://github.com/ryz310/rubocop_challenger/pull/56))
|
303
|
+
* Add option which regenerate rubocop todo file ([#59](https://github.com/ryz310/rubocop_challenger/pull/59))
|
304
|
+
|
305
|
+
### Misc
|
306
|
+
|
307
|
+
* Add access token description ([#48](https://github.com/ryz310/rubocop_challenger/pull/48))
|
308
|
+
* Add no document option to gem install command ([#51](https://github.com/ryz310/rubocop_challenger/pull/51))
|
309
|
+
|
310
|
+
## v0.1.3 (Oct 21, 2018)
|
311
|
+
|
312
|
+
### Misc
|
313
|
+
|
314
|
+
* Style/TrailingCommaInArrayLiteral at Fri Oct 19 23:30:18 UTC 2018 ([#34](https://github.com/ryz310/rubocop_challenger/pull/34))
|
315
|
+
* Update readme ([#36](https://github.com/ryz310/rubocop_challenger/pull/36))
|
316
|
+
* Add challenge class spec ([#42](https://github.com/ryz310/rubocop_challenger/pull/42))
|
317
|
+
|
318
|
+
## v0.1.2 (Oct 19, 2018)
|
319
|
+
|
320
|
+
### Misc
|
321
|
+
|
322
|
+
* Install from gem ([#28](https://github.com/ryz310/rubocop_challenger/pull/28))
|
323
|
+
|
324
|
+
## v0.1.1 (Oct 19, 2018)
|
325
|
+
|
326
|
+
Minor fixes
|
327
|
+
|
328
|
+
## v0.1.0 (Oct 18, 2018)
|
329
|
+
|
330
|
+
Initial release! :rocket:
|