rubocop_auto_corrector 0.5.0 → 0.5.2
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/.github/dependabot.yml +11 -1
- data/.github/release.yml +31 -0
- data/.github/workflows/dependabot-manager.yml +28 -0
- data/.github/workflows/pages.yml +4 -45
- data/.github/workflows/release_gem.yml +14 -0
- data/.github/workflows/test.yml +70 -24
- data/CHANGELOG.md +13 -1
- data/README.md +2 -2
- data/lib/rubocop_auto_corrector/version.rb +1 -1
- data/rubocop_auto_corrector.gemspec +4 -0
- metadata +62 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 10479ba5f5e43a21d5b9da2d6417e06b5b189a5e64a5850be477907fecf0cfab
|
|
4
|
+
data.tar.gz: 1e83dc80d3bc69d0db062e0d18a829d98fac3d6c3f3b47c1d21efdab3704e014
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50247f71e4c4cf39264043cdbda47d5b7f062ed415b5d1b8d84d9f9a23be8985b701032c32fd8964e5b9ac9733e0c5b796918f1cb1a319c5399499143fa24c9e
|
|
7
|
+
data.tar.gz: c2fe311db6339d446d9fabe38e72d44bc2c4142845a81ad3b3870e2b6985b0996c9ada466ce42bf77836457383016dad3a6e23e6348fb45f70edce93b6026cb1
|
data/.github/dependabot.yml
CHANGED
|
@@ -2,9 +2,19 @@
|
|
|
2
2
|
version: 2
|
|
3
3
|
|
|
4
4
|
updates:
|
|
5
|
+
###########################################################
|
|
6
|
+
# NOTE: following sections are auto generated. DO NOT EDIT!
|
|
7
|
+
###########################################################
|
|
5
8
|
- package-ecosystem: github-actions
|
|
6
9
|
directory: /
|
|
7
10
|
schedule:
|
|
8
|
-
interval:
|
|
11
|
+
interval: monthly
|
|
12
|
+
time: "05:00"
|
|
13
|
+
timezone: Asia/Tokyo
|
|
9
14
|
assignees:
|
|
10
15
|
- sue445
|
|
16
|
+
cooldown:
|
|
17
|
+
default-days: 7
|
|
18
|
+
exclude:
|
|
19
|
+
- ruby/setup-ruby
|
|
20
|
+
###########################################################
|
data/.github/release.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ref. https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes
|
|
2
|
+
|
|
3
|
+
changelog:
|
|
4
|
+
exclude:
|
|
5
|
+
labels:
|
|
6
|
+
- chore
|
|
7
|
+
|
|
8
|
+
categories:
|
|
9
|
+
- title: ":bomb: Breaking Changes"
|
|
10
|
+
labels:
|
|
11
|
+
- breaking change
|
|
12
|
+
|
|
13
|
+
- title: ":lock: Security Fix"
|
|
14
|
+
labels:
|
|
15
|
+
- security
|
|
16
|
+
|
|
17
|
+
- title: ":rocket: Features"
|
|
18
|
+
labels:
|
|
19
|
+
- enhancement
|
|
20
|
+
|
|
21
|
+
- title: ":bug: Bug Fixes"
|
|
22
|
+
labels:
|
|
23
|
+
- bug
|
|
24
|
+
|
|
25
|
+
- title: ":dependabot: Dependency updates"
|
|
26
|
+
labels:
|
|
27
|
+
- dependencies
|
|
28
|
+
|
|
29
|
+
- title: ":pencil: Other Changes"
|
|
30
|
+
labels:
|
|
31
|
+
- "*"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: dependabot-manager
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
types:
|
|
6
|
+
- opened
|
|
7
|
+
- synchronize # PR branch is rebased
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
dependabot-auto-merge:
|
|
11
|
+
uses: sue445/workflows/.github/workflows/dependabot-auto-merge.yml@main
|
|
12
|
+
with:
|
|
13
|
+
repo-name: sue445/rubocop_auto_corrector
|
|
14
|
+
secrets:
|
|
15
|
+
# TODO: Set secrets to Dependabot secrets
|
|
16
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
17
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
19
|
+
|
|
20
|
+
dependabot-security-alert:
|
|
21
|
+
uses: sue445/workflows/.github/workflows/dependabot-security-alert.yml@main
|
|
22
|
+
with:
|
|
23
|
+
repo-name: sue445/rubocop_auto_corrector
|
|
24
|
+
secrets:
|
|
25
|
+
# TODO: Set secrets to Dependabot secrets
|
|
26
|
+
app-id: ${{ secrets.GH_APP_ID }}
|
|
27
|
+
private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
|
28
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
data/.github/workflows/pages.yml
CHANGED
|
@@ -1,59 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
name: Deploy static content to Pages
|
|
1
|
+
name: Deploy yard to Pages
|
|
3
2
|
|
|
4
3
|
on:
|
|
5
|
-
# Runs on pushes targeting the default branch
|
|
6
4
|
push:
|
|
7
5
|
branches:
|
|
8
6
|
- master
|
|
9
|
-
|
|
10
|
-
# Allows you to run this workflow manually from the Actions tab
|
|
11
7
|
workflow_dispatch:
|
|
12
8
|
|
|
13
|
-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
14
9
|
permissions:
|
|
15
10
|
contents: read
|
|
16
11
|
pages: write
|
|
17
12
|
id-token: write
|
|
18
13
|
|
|
19
|
-
# Allow one concurrent deployment
|
|
20
|
-
concurrency:
|
|
21
|
-
group: "pages"
|
|
22
|
-
cancel-in-progress: true
|
|
23
|
-
|
|
24
14
|
jobs:
|
|
25
|
-
# Single deploy job since we're just deploying
|
|
26
15
|
deploy:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
runs-on: ubuntu-latest
|
|
31
|
-
steps:
|
|
32
|
-
- name: Checkout
|
|
33
|
-
uses: actions/checkout@v4
|
|
34
|
-
|
|
35
|
-
- uses: ruby/setup-ruby@v1
|
|
36
|
-
with:
|
|
37
|
-
ruby-version: ruby
|
|
38
|
-
bundler-cache: true
|
|
39
|
-
|
|
40
|
-
- run: bundle exec yard
|
|
41
|
-
|
|
42
|
-
- name: Setup Pages
|
|
43
|
-
uses: actions/configure-pages@v5
|
|
44
|
-
- name: Upload artifact
|
|
45
|
-
uses: actions/upload-pages-artifact@v3
|
|
46
|
-
with:
|
|
47
|
-
# Upload entire repository
|
|
48
|
-
path: './doc'
|
|
49
|
-
- name: Deploy to GitHub Pages
|
|
50
|
-
id: deployment
|
|
51
|
-
uses: actions/deploy-pages@main
|
|
52
|
-
|
|
53
|
-
- name: Slack Notification (not success)
|
|
54
|
-
uses: act10ns/slack@v2
|
|
55
|
-
if: "! success()"
|
|
56
|
-
continue-on-error: true
|
|
57
|
-
with:
|
|
58
|
-
status: ${{ job.status }}
|
|
59
|
-
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
16
|
+
uses: sue445/workflows/.github/workflows/pages-yard.yml@main
|
|
17
|
+
secrets:
|
|
18
|
+
slack-webhook: ${{ secrets.SLACK_WEBHOOK }}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
name: Publish gem to rubygems.org
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
uses: sue445/workflows/.github/workflows/release_gem.yml@main
|
|
9
|
+
with:
|
|
10
|
+
repo-name: sue445/rubocop_auto_corrector
|
|
11
|
+
gem-name: rubocop_auto_corrector
|
|
12
|
+
permissions:
|
|
13
|
+
contents: write
|
|
14
|
+
id-token: write
|
data/.github/workflows/test.yml
CHANGED
|
@@ -27,24 +27,19 @@ jobs:
|
|
|
27
27
|
- "3.1"
|
|
28
28
|
- "3.2"
|
|
29
29
|
- "3.3"
|
|
30
|
+
- "3.4"
|
|
31
|
+
- "4.0"
|
|
30
32
|
|
|
31
33
|
steps:
|
|
32
|
-
- uses: actions/checkout@
|
|
34
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
33
35
|
|
|
34
|
-
- uses: ruby/setup-ruby@v1
|
|
36
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
35
37
|
with:
|
|
36
38
|
ruby-version: ${{ matrix.ruby }}
|
|
37
39
|
bundler-cache: true
|
|
38
40
|
|
|
39
41
|
- run: bundle update --jobs $(nproc) --retry 3
|
|
40
42
|
|
|
41
|
-
- name: Setup Code Climate Test Reporter
|
|
42
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
43
|
-
with:
|
|
44
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
45
|
-
command: before-build
|
|
46
|
-
continue-on-error: true
|
|
47
|
-
|
|
48
43
|
- name: Set up git
|
|
49
44
|
run: |
|
|
50
45
|
set -xe
|
|
@@ -52,17 +47,9 @@ jobs:
|
|
|
52
47
|
git config --global user.name "github runner"
|
|
53
48
|
|
|
54
49
|
- run: bundle exec rspec
|
|
55
|
-
- run: bundle exec rubocop -P
|
|
56
|
-
|
|
57
|
-
- name: Teardown Code Climate Test Reporter
|
|
58
|
-
uses: aktions/codeclimate-test-reporter@v1
|
|
59
|
-
with:
|
|
60
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
61
|
-
command: after-build
|
|
62
|
-
continue-on-error: true
|
|
63
50
|
|
|
64
51
|
- name: Slack Notification (not success)
|
|
65
|
-
uses: act10ns/slack@v2
|
|
52
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
66
53
|
if: "! success()"
|
|
67
54
|
continue-on-error: true
|
|
68
55
|
with:
|
|
@@ -70,17 +57,76 @@ jobs:
|
|
|
70
57
|
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
71
58
|
matrix: ${{ toJson(matrix) }}
|
|
72
59
|
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
60
|
+
rubocop:
|
|
61
|
+
runs-on: ubuntu-latest
|
|
62
|
+
|
|
63
|
+
steps:
|
|
64
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
76
65
|
|
|
66
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
67
|
+
with:
|
|
68
|
+
ruby-version: ruby
|
|
69
|
+
bundler-cache: true
|
|
70
|
+
|
|
71
|
+
- name: bundle update
|
|
72
|
+
run: |
|
|
73
|
+
set -xe
|
|
74
|
+
bundle config path vendor/bundle
|
|
75
|
+
bundle update --all --jobs $(nproc) --retry 3
|
|
76
|
+
|
|
77
|
+
- run: bundle exec rubocop -P
|
|
78
|
+
|
|
79
|
+
- name: Slack Notification (not success)
|
|
80
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
81
|
+
if: "! success()"
|
|
82
|
+
continue-on-error: true
|
|
83
|
+
with:
|
|
84
|
+
status: ${{ job.status }}
|
|
85
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
86
|
+
|
|
87
|
+
yard:
|
|
77
88
|
runs-on: ubuntu-latest
|
|
78
89
|
|
|
79
90
|
steps:
|
|
80
|
-
-
|
|
81
|
-
|
|
82
|
-
|
|
91
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
92
|
+
|
|
93
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
94
|
+
with:
|
|
95
|
+
ruby-version: ruby
|
|
96
|
+
bundler-cache: true
|
|
97
|
+
|
|
98
|
+
- name: bundle update
|
|
99
|
+
run: |
|
|
100
|
+
set -xe
|
|
101
|
+
bundle config path vendor/bundle
|
|
102
|
+
bundle update --all --jobs $(nproc) --retry 3
|
|
103
|
+
|
|
104
|
+
- name: yard generating test
|
|
105
|
+
run: |
|
|
106
|
+
set -xe
|
|
107
|
+
bundle exec yard
|
|
108
|
+
ls -ld doc/
|
|
109
|
+
|
|
110
|
+
- name: Slack Notification (not success)
|
|
111
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
112
|
+
if: "! success()"
|
|
83
113
|
continue-on-error: true
|
|
84
114
|
with:
|
|
85
115
|
status: ${{ job.status }}
|
|
86
116
|
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
117
|
+
|
|
118
|
+
all-pass:
|
|
119
|
+
if: always()
|
|
120
|
+
|
|
121
|
+
needs:
|
|
122
|
+
- test
|
|
123
|
+
- rubocop
|
|
124
|
+
- yard
|
|
125
|
+
|
|
126
|
+
runs-on: ubuntu-slim
|
|
127
|
+
|
|
128
|
+
steps:
|
|
129
|
+
- name: check dependent jobs
|
|
130
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
131
|
+
with:
|
|
132
|
+
jobs: ${{ toJSON(needs) }}
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/v0.5.
|
|
2
|
+
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/v0.5.2...master)
|
|
3
|
+
|
|
4
|
+
## [v0.5.2](https://github.com/sue445/rubocop_auto_corrector/releases/tag/v0.5.2)
|
|
5
|
+
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/v0.5.1...v0.5.2)
|
|
6
|
+
|
|
7
|
+
* Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
|
|
8
|
+
* https://github.com/sue445/rubocop_auto_corrector/pull/113
|
|
9
|
+
|
|
10
|
+
## v0.5.1
|
|
11
|
+
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/v0.5.0...v0.5.1)
|
|
12
|
+
|
|
13
|
+
* Release gem from GitHub Actions
|
|
14
|
+
* https://github.com/sue445/rubocop_auto_corrector/pull/76
|
|
3
15
|
|
|
4
16
|
## v0.5.0
|
|
5
17
|
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/v0.4.5...v0.5.0)
|
data/README.md
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Run `rubocop --autocorrect && git commit` with each cop.
|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/rb/rubocop_auto_corrector)
|
|
6
|
-
[](https://github.com/sue445/rubocop_auto_corrector/actions/workflows/test.yml)
|
|
7
|
+
[](https://qlty.sh/gh/sue445/projects/rubocop_auto_corrector)
|
|
8
8
|
[](https://coveralls.io/github/sue445/rubocop_auto_corrector?branch=master)
|
|
9
9
|
|
|
10
10
|
## Example
|
|
@@ -36,13 +36,17 @@ Gem::Specification.new do |spec|
|
|
|
36
36
|
|
|
37
37
|
spec.add_development_dependency 'bundler', '>= 1.17'
|
|
38
38
|
spec.add_development_dependency 'coveralls_reborn'
|
|
39
|
+
spec.add_development_dependency 'logger'
|
|
40
|
+
spec.add_development_dependency 'ostruct'
|
|
39
41
|
spec.add_development_dependency 'rake'
|
|
42
|
+
spec.add_development_dependency 'rdoc'
|
|
40
43
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
|
41
44
|
spec.add_development_dependency 'rspec-parameterized'
|
|
42
45
|
spec.add_development_dependency 'rspec-temp_dir', '>= 1.1.0'
|
|
43
46
|
spec.add_development_dependency 'rubocop', '>= 1.23.0'
|
|
44
47
|
spec.add_development_dependency 'rubocop-rspec'
|
|
45
48
|
spec.add_development_dependency 'simplecov', '< 0.18.0'
|
|
49
|
+
spec.add_development_dependency 'term-ansicolor', '!= 1.11.1' # ref. https://github.com/flori/term-ansicolor/issues/41
|
|
46
50
|
spec.add_development_dependency 'unparser', '>= 0.4.5'
|
|
47
51
|
spec.add_development_dependency 'yard'
|
|
48
52
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop_auto_corrector
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: rubocop
|
|
@@ -52,6 +51,34 @@ dependencies:
|
|
|
52
51
|
- - ">="
|
|
53
52
|
- !ruby/object:Gem::Version
|
|
54
53
|
version: '0'
|
|
54
|
+
- !ruby/object:Gem::Dependency
|
|
55
|
+
name: logger
|
|
56
|
+
requirement: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '0'
|
|
61
|
+
type: :development
|
|
62
|
+
prerelease: false
|
|
63
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0'
|
|
68
|
+
- !ruby/object:Gem::Dependency
|
|
69
|
+
name: ostruct
|
|
70
|
+
requirement: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
type: :development
|
|
76
|
+
prerelease: false
|
|
77
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
78
|
+
requirements:
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0'
|
|
55
82
|
- !ruby/object:Gem::Dependency
|
|
56
83
|
name: rake
|
|
57
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,6 +93,20 @@ dependencies:
|
|
|
66
93
|
- - ">="
|
|
67
94
|
- !ruby/object:Gem::Version
|
|
68
95
|
version: '0'
|
|
96
|
+
- !ruby/object:Gem::Dependency
|
|
97
|
+
name: rdoc
|
|
98
|
+
requirement: !ruby/object:Gem::Requirement
|
|
99
|
+
requirements:
|
|
100
|
+
- - ">="
|
|
101
|
+
- !ruby/object:Gem::Version
|
|
102
|
+
version: '0'
|
|
103
|
+
type: :development
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - ">="
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: '0'
|
|
69
110
|
- !ruby/object:Gem::Dependency
|
|
70
111
|
name: rspec
|
|
71
112
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -150,6 +191,20 @@ dependencies:
|
|
|
150
191
|
- - "<"
|
|
151
192
|
- !ruby/object:Gem::Version
|
|
152
193
|
version: 0.18.0
|
|
194
|
+
- !ruby/object:Gem::Dependency
|
|
195
|
+
name: term-ansicolor
|
|
196
|
+
requirement: !ruby/object:Gem::Requirement
|
|
197
|
+
requirements:
|
|
198
|
+
- - "!="
|
|
199
|
+
- !ruby/object:Gem::Version
|
|
200
|
+
version: 1.11.1
|
|
201
|
+
type: :development
|
|
202
|
+
prerelease: false
|
|
203
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
204
|
+
requirements:
|
|
205
|
+
- - "!="
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: 1.11.1
|
|
153
208
|
- !ruby/object:Gem::Dependency
|
|
154
209
|
name: unparser
|
|
155
210
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -188,7 +243,10 @@ extra_rdoc_files: []
|
|
|
188
243
|
files:
|
|
189
244
|
- ".coveralls.yml"
|
|
190
245
|
- ".github/dependabot.yml"
|
|
246
|
+
- ".github/release.yml"
|
|
247
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
191
248
|
- ".github/workflows/pages.yml"
|
|
249
|
+
- ".github/workflows/release_gem.yml"
|
|
192
250
|
- ".github/workflows/test.yml"
|
|
193
251
|
- ".gitignore"
|
|
194
252
|
- ".rspec"
|
|
@@ -217,7 +275,6 @@ metadata:
|
|
|
217
275
|
changelog_uri: https://github.com/sue445/rubocop_auto_corrector/blob/master/CHANGELOG.md
|
|
218
276
|
documentation_uri: https://sue445.github.io/rubocop_auto_corrector/
|
|
219
277
|
rubygems_mfa_required: 'true'
|
|
220
|
-
post_install_message:
|
|
221
278
|
rdoc_options: []
|
|
222
279
|
require_paths:
|
|
223
280
|
- lib
|
|
@@ -232,8 +289,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
232
289
|
- !ruby/object:Gem::Version
|
|
233
290
|
version: '0'
|
|
234
291
|
requirements: []
|
|
235
|
-
rubygems_version:
|
|
236
|
-
signing_key:
|
|
292
|
+
rubygems_version: 4.0.16
|
|
237
293
|
specification_version: 4
|
|
238
294
|
summary: Run `rubocop --autocorrect && git commit` with each cop.
|
|
239
295
|
test_files: []
|