rubocop_auto_corrector 0.5.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +11 -3
- 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 +4 -31
- data/.github/workflows/test.yml +69 -25
- data/.rubocop.yml +2 -2
- data/CHANGELOG.md +15 -1
- data/Gemfile +1 -2
- data/README.md +1 -1
- data/lib/rubocop_auto_corrector/version.rb +1 -1
- data/rubocop_auto_corrector.gemspec +6 -3
- metadata +51 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db6fa6daccac3f8b0a813fcd01c002b1a851d73bddad37d1d26d3e6abbdbe0a6
|
|
4
|
+
data.tar.gz: f6701047f6a11d4414c9b79fe62b98709ad04b3b3bb82319feb1419162f6315e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 51fd363a61ce27c25c9f3e0d17d6cfbb14ef1a54345232876476536c4ea82f8080927793b30687dd2b78d54d1dca88ec4741408ccb3f2b3fff78b0b1c0b74d3b
|
|
7
|
+
data.tar.gz: 549bd63b23d997e83f0a84d9766ab1bc347d77da883c787649fe9c63244bb2d4a868365a82da1ecb07a0fea367f01e9df5a65df6c7bd3a4e3f41e21144636ff6
|
data/.github/dependabot.yml
CHANGED
|
@@ -2,11 +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:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
+
interval: monthly
|
|
12
|
+
time: "05:00"
|
|
13
|
+
timezone: Asia/Tokyo
|
|
11
14
|
assignees:
|
|
12
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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
|
34
|
-
|
|
35
|
-
- uses: ruby/setup-ruby@8aeb6ff8030dd539317f8e1769a044873b56ea71 # v1.268.0
|
|
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@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
|
|
44
|
-
- name: Upload artifact
|
|
45
|
-
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
|
|
46
|
-
with:
|
|
47
|
-
# Upload entire repository
|
|
48
|
-
path: './doc'
|
|
49
|
-
- name: Deploy to GitHub Pages
|
|
50
|
-
id: deployment
|
|
51
|
-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
|
|
52
|
-
|
|
53
|
-
- name: Slack Notification (not success)
|
|
54
|
-
uses: act10ns/slack@cfcc30955fe9377f4f55e1079e5419ee1014269f # 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 }}
|
|
@@ -5,37 +5,10 @@ on:
|
|
|
5
5
|
|
|
6
6
|
jobs:
|
|
7
7
|
release:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
name: rubygems.org
|
|
13
|
-
url: https://rubygems.org/gems/rubocop_auto_corrector
|
|
14
|
-
|
|
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
|
|
15
12
|
permissions:
|
|
16
13
|
contents: write
|
|
17
14
|
id-token: write
|
|
18
|
-
|
|
19
|
-
steps:
|
|
20
|
-
- name: Harden Runner
|
|
21
|
-
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
|
|
22
|
-
with:
|
|
23
|
-
egress-policy: audit
|
|
24
|
-
|
|
25
|
-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
26
|
-
|
|
27
|
-
- name: Set up Ruby
|
|
28
|
-
uses: ruby/setup-ruby@eaecf785f6a34567a6d97f686bbb7bccc1ac1e5c # v1.237.0
|
|
29
|
-
with:
|
|
30
|
-
bundler-cache: true
|
|
31
|
-
ruby-version: ruby
|
|
32
|
-
|
|
33
|
-
- name: Publish to RubyGems
|
|
34
|
-
uses: rubygems/release-gem@a25424ba2ba8b387abc8ef40807c2c85b96cbe32 # v1.1.1
|
|
35
|
-
|
|
36
|
-
- name: Create GitHub release
|
|
37
|
-
run: |
|
|
38
|
-
tag_name="$(git describe --tags --abbrev=0)"
|
|
39
|
-
gh release create "${tag_name}" --verify-tag --generate-notes
|
|
40
|
-
env:
|
|
41
|
-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
data/.github/workflows/test.yml
CHANGED
|
@@ -21,31 +21,24 @@ jobs:
|
|
|
21
21
|
|
|
22
22
|
matrix:
|
|
23
23
|
ruby:
|
|
24
|
-
- "2.6"
|
|
25
24
|
- "2.7"
|
|
26
25
|
- "3.0"
|
|
27
26
|
- "3.1"
|
|
28
27
|
- "3.2"
|
|
29
28
|
- "3.3"
|
|
30
29
|
- "3.4"
|
|
30
|
+
- "4.0"
|
|
31
31
|
|
|
32
32
|
steps:
|
|
33
|
-
- uses: actions/checkout@
|
|
33
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
34
34
|
|
|
35
|
-
- uses: ruby/setup-ruby@
|
|
35
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
36
36
|
with:
|
|
37
37
|
ruby-version: ${{ matrix.ruby }}
|
|
38
38
|
bundler-cache: true
|
|
39
39
|
|
|
40
40
|
- run: bundle update --jobs $(nproc) --retry 3
|
|
41
41
|
|
|
42
|
-
- name: Setup Code Climate Test Reporter
|
|
43
|
-
uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
|
|
44
|
-
with:
|
|
45
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
46
|
-
command: before-build
|
|
47
|
-
continue-on-error: true
|
|
48
|
-
|
|
49
42
|
- name: Set up git
|
|
50
43
|
run: |
|
|
51
44
|
set -xe
|
|
@@ -53,17 +46,9 @@ jobs:
|
|
|
53
46
|
git config --global user.name "github runner"
|
|
54
47
|
|
|
55
48
|
- run: bundle exec rspec
|
|
56
|
-
- run: bundle exec rubocop -P
|
|
57
|
-
|
|
58
|
-
- name: Teardown Code Climate Test Reporter
|
|
59
|
-
uses: aktions/codeclimate-test-reporter@7634aa9ac7883182f583f15ff7b6ff519939dd0a # v1.2.0
|
|
60
|
-
with:
|
|
61
|
-
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
|
62
|
-
command: after-build
|
|
63
|
-
continue-on-error: true
|
|
64
49
|
|
|
65
50
|
- name: Slack Notification (not success)
|
|
66
|
-
uses: act10ns/slack@
|
|
51
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
67
52
|
if: "! success()"
|
|
68
53
|
continue-on-error: true
|
|
69
54
|
with:
|
|
@@ -71,17 +56,76 @@ jobs:
|
|
|
71
56
|
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
72
57
|
matrix: ${{ toJson(matrix) }}
|
|
73
58
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
59
|
+
rubocop:
|
|
60
|
+
runs-on: ubuntu-latest
|
|
61
|
+
|
|
62
|
+
steps:
|
|
63
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
77
64
|
|
|
65
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
66
|
+
with:
|
|
67
|
+
ruby-version: ruby
|
|
68
|
+
bundler-cache: true
|
|
69
|
+
|
|
70
|
+
- name: bundle update
|
|
71
|
+
run: |
|
|
72
|
+
set -xe
|
|
73
|
+
bundle config path vendor/bundle
|
|
74
|
+
bundle update --all --jobs $(nproc) --retry 3
|
|
75
|
+
|
|
76
|
+
- run: bundle exec rubocop -P
|
|
77
|
+
|
|
78
|
+
- name: Slack Notification (not success)
|
|
79
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
80
|
+
if: "! success()"
|
|
81
|
+
continue-on-error: true
|
|
82
|
+
with:
|
|
83
|
+
status: ${{ job.status }}
|
|
84
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
85
|
+
|
|
86
|
+
yard:
|
|
78
87
|
runs-on: ubuntu-latest
|
|
79
88
|
|
|
80
89
|
steps:
|
|
81
|
-
-
|
|
82
|
-
|
|
83
|
-
|
|
90
|
+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
91
|
+
|
|
92
|
+
- uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
|
|
93
|
+
with:
|
|
94
|
+
ruby-version: ruby
|
|
95
|
+
bundler-cache: true
|
|
96
|
+
|
|
97
|
+
- name: bundle update
|
|
98
|
+
run: |
|
|
99
|
+
set -xe
|
|
100
|
+
bundle config path vendor/bundle
|
|
101
|
+
bundle update --all --jobs $(nproc) --retry 3
|
|
102
|
+
|
|
103
|
+
- name: yard generating test
|
|
104
|
+
run: |
|
|
105
|
+
set -xe
|
|
106
|
+
bundle exec yard
|
|
107
|
+
ls -ld doc/
|
|
108
|
+
|
|
109
|
+
- name: Slack Notification (not success)
|
|
110
|
+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054 # v2.2.0
|
|
111
|
+
if: "! success()"
|
|
84
112
|
continue-on-error: true
|
|
85
113
|
with:
|
|
86
114
|
status: ${{ job.status }}
|
|
87
115
|
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
|
116
|
+
|
|
117
|
+
all-pass:
|
|
118
|
+
if: always()
|
|
119
|
+
|
|
120
|
+
needs:
|
|
121
|
+
- test
|
|
122
|
+
- rubocop
|
|
123
|
+
- yard
|
|
124
|
+
|
|
125
|
+
runs-on: ubuntu-slim
|
|
126
|
+
|
|
127
|
+
steps:
|
|
128
|
+
- name: check dependent jobs
|
|
129
|
+
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
130
|
+
with:
|
|
131
|
+
jobs: ${{ toJSON(needs) }}
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/
|
|
2
|
+
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/v1.0.0...master)
|
|
3
|
+
|
|
4
|
+
## [v1.0.0](https://github.com/sue445/rubocop_auto_corrector/releases/tag/v1.0.0)
|
|
5
|
+
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/v0.5.2...v1.0.0)
|
|
6
|
+
|
|
7
|
+
* Requires Ruby 2.7+
|
|
8
|
+
* https://github.com/sue445/rubocop_auto_corrector/pull/115
|
|
9
|
+
* Requires rubocop 1.51.0+ in runtime dependency
|
|
10
|
+
* https://github.com/sue445/rubocop_auto_corrector/pull/116
|
|
11
|
+
|
|
12
|
+
## [v0.5.2](https://github.com/sue445/rubocop_auto_corrector/releases/tag/v0.5.2)
|
|
13
|
+
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/v0.5.1...v0.5.2)
|
|
14
|
+
|
|
15
|
+
* Migrate release_gem workflow to sue445/workflows (Also testing the gem release)
|
|
16
|
+
* https://github.com/sue445/rubocop_auto_corrector/pull/113
|
|
3
17
|
|
|
4
18
|
## v0.5.1
|
|
5
19
|
[full changelog](http://github.com/sue445/rubocop_auto_corrector/compare/v0.5.0...v0.5.1)
|
data/Gemfile
CHANGED
|
@@ -7,8 +7,7 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
|
|
7
7
|
# Specify your gem's dependencies in rubocop_auto_corrector.gemspec
|
|
8
8
|
gemspec
|
|
9
9
|
|
|
10
|
-
# rubocop:disable Gemspec/DevelopmentDependencies
|
|
10
|
+
# rubocop:disable-next Gemspec/DevelopmentDependencies
|
|
11
11
|
if Gem::Version.create(RUBY_VERSION) >= Gem::Version.create('2.7.0')
|
|
12
12
|
gem 'rubocop-factory_bot'
|
|
13
13
|
end
|
|
14
|
-
# rubocop:enable Gemspec/DevelopmentDependencies
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Run `rubocop --autocorrect && git commit` with each cop.
|
|
|
4
4
|
|
|
5
5
|
[](https://badge.fury.io/rb/rubocop_auto_corrector)
|
|
6
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
|
|
@@ -30,17 +30,20 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
31
31
|
spec.require_paths = ['lib']
|
|
32
32
|
|
|
33
|
-
spec.required_ruby_version = '>= 2.
|
|
33
|
+
spec.required_ruby_version = '>= 2.7.0'
|
|
34
34
|
|
|
35
|
-
spec.add_dependency 'rubocop', '>= 1.
|
|
35
|
+
spec.add_dependency 'rubocop', '>= 1.51.0'
|
|
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
|
-
spec.add_development_dependency 'rubocop', '>= 1.
|
|
46
|
+
spec.add_development_dependency 'rubocop', '>= 1.90.0'
|
|
44
47
|
spec.add_development_dependency 'rubocop-rspec'
|
|
45
48
|
spec.add_development_dependency 'simplecov', '< 0.18.0'
|
|
46
49
|
spec.add_development_dependency 'term-ansicolor', '!= 1.11.1' # ref. https://github.com/flori/term-ansicolor/issues/41
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubocop_auto_corrector
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
@@ -15,14 +15,14 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - ">="
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 1.
|
|
18
|
+
version: 1.51.0
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - ">="
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 1.
|
|
25
|
+
version: 1.51.0
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: bundler
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -51,6 +51,34 @@ dependencies:
|
|
|
51
51
|
- - ">="
|
|
52
52
|
- !ruby/object:Gem::Version
|
|
53
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'
|
|
54
82
|
- !ruby/object:Gem::Dependency
|
|
55
83
|
name: rake
|
|
56
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -65,6 +93,20 @@ dependencies:
|
|
|
65
93
|
- - ">="
|
|
66
94
|
- !ruby/object:Gem::Version
|
|
67
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'
|
|
68
110
|
- !ruby/object:Gem::Dependency
|
|
69
111
|
name: rspec
|
|
70
112
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -113,14 +155,14 @@ dependencies:
|
|
|
113
155
|
requirements:
|
|
114
156
|
- - ">="
|
|
115
157
|
- !ruby/object:Gem::Version
|
|
116
|
-
version: 1.
|
|
158
|
+
version: 1.90.0
|
|
117
159
|
type: :development
|
|
118
160
|
prerelease: false
|
|
119
161
|
version_requirements: !ruby/object:Gem::Requirement
|
|
120
162
|
requirements:
|
|
121
163
|
- - ">="
|
|
122
164
|
- !ruby/object:Gem::Version
|
|
123
|
-
version: 1.
|
|
165
|
+
version: 1.90.0
|
|
124
166
|
- !ruby/object:Gem::Dependency
|
|
125
167
|
name: rubocop-rspec
|
|
126
168
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -201,6 +243,8 @@ extra_rdoc_files: []
|
|
|
201
243
|
files:
|
|
202
244
|
- ".coveralls.yml"
|
|
203
245
|
- ".github/dependabot.yml"
|
|
246
|
+
- ".github/release.yml"
|
|
247
|
+
- ".github/workflows/dependabot-manager.yml"
|
|
204
248
|
- ".github/workflows/pages.yml"
|
|
205
249
|
- ".github/workflows/release_gem.yml"
|
|
206
250
|
- ".github/workflows/test.yml"
|
|
@@ -238,14 +282,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
238
282
|
requirements:
|
|
239
283
|
- - ">="
|
|
240
284
|
- !ruby/object:Gem::Version
|
|
241
|
-
version: 2.
|
|
285
|
+
version: 2.7.0
|
|
242
286
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
243
287
|
requirements:
|
|
244
288
|
- - ">="
|
|
245
289
|
- !ruby/object:Gem::Version
|
|
246
290
|
version: '0'
|
|
247
291
|
requirements: []
|
|
248
|
-
rubygems_version:
|
|
292
|
+
rubygems_version: 4.0.16
|
|
249
293
|
specification_version: 4
|
|
250
294
|
summary: Run `rubocop --autocorrect && git commit` with each cop.
|
|
251
295
|
test_files: []
|