rubocop-itamae 0.1.4 → 0.2.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 +10 -0
- data/.github/workflows/pages.yml +59 -0
- data/.github/workflows/test.yml +21 -49
- data/.rubocop.yml +6 -2
- data/CHANGELOG.md +14 -1
- data/Gemfile +5 -0
- data/README.md +3 -2
- data/config/default.yml +4 -4
- data/lib/rubocop/cop/itamae/recipe_path.rb +2 -3
- data/lib/rubocop/itamae/plugin.rb +31 -0
- data/lib/rubocop/itamae/version.rb +1 -1
- data/lib/rubocop-itamae.rb +1 -0
- data/rubocop-itamae.gemspec +13 -4
- metadata +45 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3dc78e48b2caa8da158c09037d9f70dd3c6452b7b69b9553c09aadbb0f2ea2f
|
4
|
+
data.tar.gz: bf840e36d0987f8710188d5201b09f5a76f6e355dfe24bbd1b78d6337452f1ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 627d693c9b3fba525e11ae845a8c37bc2a673764bba72d8b942d995b9874d2d39901e33eedeead6e02cda51b8636b84e4d2a6968e8c017c582278a92143cc8a7
|
7
|
+
data.tar.gz: 51148e70526c38d7e0cf1e8117be38c09bee11cc287fb9e16c250005e71fac955d95ce8d281fd14627f6c888bc9b85c4f7aa4f062dc050e38522199a0ef9d99b
|
@@ -0,0 +1,10 @@
|
|
1
|
+
# c.f. https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
2
|
+
version: 2
|
3
|
+
|
4
|
+
updates:
|
5
|
+
- package-ecosystem: github-actions
|
6
|
+
directory: /
|
7
|
+
schedule:
|
8
|
+
interval: weekly
|
9
|
+
assignees:
|
10
|
+
- sue445
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# Simple workflow for deploying static content to GitHub Pages
|
2
|
+
name: Deploy static content to Pages
|
3
|
+
|
4
|
+
on:
|
5
|
+
# Runs on pushes targeting the default branch
|
6
|
+
push:
|
7
|
+
branches:
|
8
|
+
- master
|
9
|
+
|
10
|
+
# Allows you to run this workflow manually from the Actions tab
|
11
|
+
workflow_dispatch:
|
12
|
+
|
13
|
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
14
|
+
permissions:
|
15
|
+
contents: read
|
16
|
+
pages: write
|
17
|
+
id-token: write
|
18
|
+
|
19
|
+
# Allow one concurrent deployment
|
20
|
+
concurrency:
|
21
|
+
group: "pages"
|
22
|
+
cancel-in-progress: true
|
23
|
+
|
24
|
+
jobs:
|
25
|
+
# Single deploy job since we're just deploying
|
26
|
+
deploy:
|
27
|
+
environment:
|
28
|
+
name: github-pages
|
29
|
+
url: ${{ steps.deployment.outputs.page_url }}
|
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 }}
|
data/.github/workflows/test.yml
CHANGED
@@ -12,83 +12,58 @@ on:
|
|
12
12
|
schedule:
|
13
13
|
- cron: "0 10 * * 5" # JST 19:00 (Fri)
|
14
14
|
|
15
|
-
env:
|
16
|
-
CI: "true"
|
17
|
-
|
18
15
|
jobs:
|
19
16
|
test:
|
20
17
|
runs-on: ubuntu-latest
|
21
18
|
|
22
|
-
container: ${{ matrix.ruby }}
|
23
|
-
|
24
19
|
strategy:
|
25
20
|
fail-fast: false
|
26
21
|
|
27
22
|
matrix:
|
28
23
|
ruby:
|
29
|
-
-
|
30
|
-
-
|
31
|
-
-
|
32
|
-
-
|
33
|
-
-
|
34
|
-
|
35
|
-
- ruby: rubylang/ruby:master-nightly-bionic
|
36
|
-
allow_failures: "true"
|
24
|
+
- "2.7"
|
25
|
+
- "3.0"
|
26
|
+
- "3.1"
|
27
|
+
- "3.2"
|
28
|
+
- "3.3"
|
29
|
+
- "3.4"
|
37
30
|
|
38
31
|
steps:
|
39
|
-
- uses: actions/checkout@
|
32
|
+
- uses: actions/checkout@v4
|
40
33
|
|
41
|
-
|
42
|
-
- name: Cache vendor/bundle
|
43
|
-
uses: actions/cache@v1
|
44
|
-
id: cache_gem
|
34
|
+
- uses: ruby/setup-ruby@v1
|
45
35
|
with:
|
46
|
-
|
47
|
-
|
48
|
-
restore-keys: |
|
49
|
-
v1-gem-${{ runner.os }}-${{ matrix.ruby }}-
|
50
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
36
|
+
ruby-version: ${{ matrix.ruby }}
|
37
|
+
bundler-cache: true
|
51
38
|
|
52
|
-
-
|
53
|
-
run: |
|
54
|
-
set -xe
|
55
|
-
bundle config path vendor/bundle
|
56
|
-
bundle update --jobs $(nproc) --retry 3
|
57
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
39
|
+
- run: bundle update --jobs $(nproc) --retry 3
|
58
40
|
|
59
41
|
- name: Setup Code Climate Test Reporter
|
60
42
|
uses: aktions/codeclimate-test-reporter@v1
|
61
43
|
with:
|
62
44
|
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
63
45
|
command: before-build
|
64
|
-
if: matrix.ruby >= 'ruby:2.4'
|
65
46
|
continue-on-error: true
|
66
47
|
|
67
|
-
-
|
68
|
-
|
69
|
-
set -xe
|
70
|
-
bundle exec rspec
|
71
|
-
bundle exec rubocop -P
|
72
|
-
continue-on-error: ${{ matrix.allow_failures == 'true' }}
|
48
|
+
- run: bundle exec rspec
|
49
|
+
- run: bundle exec rubocop -P
|
73
50
|
|
74
51
|
- name: Teardown Code Climate Test Reporter
|
75
52
|
uses: aktions/codeclimate-test-reporter@v1
|
76
53
|
with:
|
77
54
|
codeclimate-test-reporter-id: ${{ secrets.CC_TEST_REPORTER_ID }}
|
78
55
|
command: after-build
|
79
|
-
if:
|
56
|
+
if: always()
|
80
57
|
continue-on-error: true
|
81
58
|
|
82
59
|
- name: Slack Notification (not success)
|
83
|
-
uses:
|
60
|
+
uses: act10ns/slack@v2
|
84
61
|
if: "! success()"
|
85
62
|
continue-on-error: true
|
86
63
|
with:
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
91
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
64
|
+
status: ${{ job.status }}
|
65
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
66
|
+
matrix: ${{ toJson(matrix) }}
|
92
67
|
|
93
68
|
notify:
|
94
69
|
needs:
|
@@ -98,12 +73,9 @@ jobs:
|
|
98
73
|
|
99
74
|
steps:
|
100
75
|
- name: Slack Notification (success)
|
101
|
-
uses:
|
76
|
+
uses: act10ns/slack@v2
|
102
77
|
if: always()
|
103
78
|
continue-on-error: true
|
104
79
|
with:
|
105
|
-
|
106
|
-
|
107
|
-
icon_emoji: ":octocat:"
|
108
|
-
url: ${{ secrets.SLACK_WEBHOOK }}
|
109
|
-
token: ${{ secrets.GITHUB_TOKEN }}
|
80
|
+
status: ${{ job.status }}
|
81
|
+
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
|
data/.rubocop.yml
CHANGED
@@ -2,8 +2,11 @@ AllCops:
|
|
2
2
|
NewCops: enable
|
3
3
|
SuggestExtensions: false
|
4
4
|
|
5
|
-
# rubocop 1.
|
6
|
-
TargetRubyVersion: 2.
|
5
|
+
# rubocop 1.72.0+ requires ruby 2.7+
|
6
|
+
TargetRubyVersion: 2.7
|
7
|
+
|
8
|
+
Gemspec/DevelopmentDependencies:
|
9
|
+
EnforcedStyle: gemspec
|
7
10
|
|
8
11
|
Layout/LineLength:
|
9
12
|
Exclude:
|
@@ -12,6 +15,7 @@ Layout/LineLength:
|
|
12
15
|
Metrics/BlockLength:
|
13
16
|
Exclude:
|
14
17
|
- "spec/**/*.rb"
|
18
|
+
- "rubocop-itamae.gemspec"
|
15
19
|
|
16
20
|
Naming/FileName:
|
17
21
|
Exclude:
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
## master
|
2
|
-
[full changelog](http://github.com/sue445/rubocop-itamae/compare/v0.
|
2
|
+
[full changelog](http://github.com/sue445/rubocop-itamae/compare/v0.2.0...master)
|
3
|
+
|
4
|
+
## [v0.2.0](https://github.com/sue445/rubocop-itamae/releases/tag/v0.2.0)
|
5
|
+
|
6
|
+
[full changelog](http://github.com/sue445/rubocop-itamae/compare/v0.1.5...v0.2.0)
|
7
|
+
|
8
|
+
* Pluginfy RuboCop Itamae
|
9
|
+
* https://github.com/sue445/rubocop-itamae/pull/82
|
10
|
+
|
11
|
+
## v0.1.5
|
12
|
+
[full changelog](http://github.com/sue445/rubocop-itamae/compare/v0.1.4...v0.1.5)
|
13
|
+
|
14
|
+
* Enable MFA requirement for gem releasing
|
15
|
+
* https://github.com/sue445/rubocop-itamae/pull/52
|
3
16
|
|
4
17
|
## v0.1.4
|
5
18
|
[full changelog](http://github.com/sue445/rubocop-itamae/compare/v0.1.3...v0.1.4)
|
data/Gemfile
CHANGED
@@ -6,3 +6,8 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
|
6
6
|
|
7
7
|
# Specify your gem's dependencies in rubocop-itamae.gemspec
|
8
8
|
gemspec
|
9
|
+
|
10
|
+
if Gem::Version.create(RUBY_VERSION) < Gem::Version.create('2.7.0')
|
11
|
+
# term-ansicolor 1.9.0+ doesn't work on Ruby < 2.7
|
12
|
+
gem 'term-ansicolor', '< 1.9.0'
|
13
|
+
end
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
Code style checking for [itamae](https://github.com/itamae-kitchen/itamae) recipes
|
4
4
|
|
5
5
|
[](https://badge.fury.io/rb/rubocop-itamae)
|
6
|
-
[](https://github.com/sue445/rubocop-itamae/actions/workflows/test.yml)
|
7
7
|
[](https://coveralls.io/github/sue445/rubocop-itamae?branch=master)
|
8
8
|
[](https://codeclimate.com/github/sue445/rubocop-itamae/maintainability)
|
9
9
|
|
@@ -27,7 +27,8 @@ Or install it yourself as:
|
|
27
27
|
Add this line to your application's `.rubocop.yml`
|
28
28
|
|
29
29
|
```yml
|
30
|
-
|
30
|
+
plugins:
|
31
|
+
- rubocop-itamae
|
31
32
|
```
|
32
33
|
|
33
34
|
## Development
|
data/config/default.yml
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
Itamae/CdInExecute:
|
2
2
|
Description: Check that `cd` in `execute`.
|
3
3
|
Enabled: true
|
4
|
-
StyleGuide:
|
4
|
+
StyleGuide: https://sue445.github.io/rubocop-itamae/RuboCop/Cop/Itamae/CdInExecute.html
|
5
5
|
|
6
6
|
Itamae/CommandEqualsToName:
|
7
7
|
Description: Check that `command` doesn't equals to name of `execute`.
|
8
8
|
Enabled: true
|
9
|
-
StyleGuide:
|
9
|
+
StyleGuide: https://sue445.github.io/rubocop-itamae/RuboCop/Cop/Itamae/CommandEqualsToName.html
|
10
10
|
|
11
11
|
Itamae/NeedlessDefaultAction:
|
12
12
|
Description: Checks whether default action is written for resource.
|
13
13
|
Enabled: true
|
14
|
-
StyleGuide:
|
14
|
+
StyleGuide: https://sue445.github.io/rubocop-itamae/RuboCop/Cop/Itamae/NeedlessDefaultAction.html
|
15
15
|
|
16
16
|
Itamae/RecipePath:
|
17
17
|
Description: Checks whether the recipe is placed under `cookbooks` dir or `roles` dir.
|
18
18
|
Enabled: true
|
19
|
-
StyleGuide:
|
19
|
+
StyleGuide: https://sue445.github.io/rubocop-itamae/RuboCop/Cop/Itamae/RecipePath.html
|
@@ -20,8 +20,7 @@ module RuboCop
|
|
20
20
|
class RecipePath < Base
|
21
21
|
include RangeHelp
|
22
22
|
|
23
|
-
MSG = 'Prefer recipe to placed under `cookbooks` dir'
|
24
|
-
' or `roles` dir.'
|
23
|
+
MSG = 'Prefer recipe to placed under `cookbooks` dir or `roles` dir.'
|
25
24
|
|
26
25
|
def on_new_investigation
|
27
26
|
file_path = processed_source.file_path
|
@@ -33,7 +32,7 @@ module RuboCop
|
|
33
32
|
private
|
34
33
|
|
35
34
|
def bad_filename?(file_path)
|
36
|
-
return unless File.extname(file_path) == '.rb'
|
35
|
+
return false unless File.extname(file_path) == '.rb'
|
37
36
|
|
38
37
|
!file_path.match?(%r{/(cookbooks|roles)/})
|
39
38
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'lint_roller'
|
4
|
+
|
5
|
+
module RuboCop
|
6
|
+
module Itamae
|
7
|
+
# A plugin that integrates RuboCop Performance with RuboCop's plugin system.
|
8
|
+
class Plugin < LintRoller::Plugin
|
9
|
+
def about
|
10
|
+
LintRoller::About.new(
|
11
|
+
name: 'rubocop-itamae',
|
12
|
+
version: VERSION,
|
13
|
+
homepage: 'https://github.com/sue445/rubocop-itamae',
|
14
|
+
description: 'Code style checking for itamae recipes'
|
15
|
+
)
|
16
|
+
end
|
17
|
+
|
18
|
+
def supported?(context)
|
19
|
+
context.engine == :rubocop
|
20
|
+
end
|
21
|
+
|
22
|
+
def rules(_context)
|
23
|
+
LintRoller::Rules.new(
|
24
|
+
type: :path,
|
25
|
+
config_format: :rubocop,
|
26
|
+
value: Pathname.new(__dir__).join('../../../config/default.yml')
|
27
|
+
)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
data/lib/rubocop-itamae.rb
CHANGED
data/rubocop-itamae.gemspec
CHANGED
@@ -15,22 +15,31 @@ Gem::Specification.new do |spec|
|
|
15
15
|
spec.homepage = 'https://github.com/sue445/rubocop-itamae'
|
16
16
|
spec.license = 'MIT'
|
17
17
|
|
18
|
-
spec.
|
18
|
+
spec.metadata['homepage_uri'] = spec.homepage
|
19
|
+
spec.metadata['source_code_uri'] = spec.homepage
|
20
|
+
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/CHANGELOG.md"
|
21
|
+
spec.metadata['documentation_uri'] = 'https://sue445.github.io/rubocop-itamae/'
|
22
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
23
|
+
spec.metadata['default_lint_roller_plugin'] = 'RuboCop::Itamae::Plugin'
|
24
|
+
|
25
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
19
26
|
f.match(%r{^(test|spec|features)/})
|
20
27
|
end
|
21
28
|
spec.bindir = 'exe'
|
22
29
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
23
30
|
spec.require_paths = ['lib']
|
24
31
|
|
25
|
-
spec.required_ruby_version = '>= 2.
|
32
|
+
spec.required_ruby_version = '>= 2.7.0'
|
26
33
|
|
27
|
-
spec.add_dependency '
|
34
|
+
spec.add_dependency 'lint_roller'
|
35
|
+
spec.add_dependency 'rubocop', '>= 1.72.0'
|
28
36
|
|
29
37
|
spec.add_development_dependency 'bundler', '>= 1.16'
|
30
|
-
spec.add_development_dependency '
|
38
|
+
spec.add_development_dependency 'coveralls_reborn'
|
31
39
|
spec.add_development_dependency 'rake', '>= 11.0'
|
32
40
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
33
41
|
spec.add_development_dependency 'rubocop_auto_corrector'
|
34
42
|
spec.add_development_dependency 'simplecov', '< 0.18.0'
|
43
|
+
spec.add_development_dependency 'term-ansicolor', '!= 1.11.1' # ref. https://github.com/flori/term-ansicolor/issues/41
|
35
44
|
spec.add_development_dependency 'yard'
|
36
45
|
end
|
metadata
CHANGED
@@ -1,29 +1,42 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-itamae
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sue445
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: lint_roller
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - ">="
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0'
|
13
26
|
- !ruby/object:Gem::Dependency
|
14
27
|
name: rubocop
|
15
28
|
requirement: !ruby/object:Gem::Requirement
|
16
29
|
requirements:
|
17
30
|
- - ">="
|
18
31
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
32
|
+
version: 1.72.0
|
20
33
|
type: :runtime
|
21
34
|
prerelease: false
|
22
35
|
version_requirements: !ruby/object:Gem::Requirement
|
23
36
|
requirements:
|
24
37
|
- - ">="
|
25
38
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
39
|
+
version: 1.72.0
|
27
40
|
- !ruby/object:Gem::Dependency
|
28
41
|
name: bundler
|
29
42
|
requirement: !ruby/object:Gem::Requirement
|
@@ -39,7 +52,7 @@ dependencies:
|
|
39
52
|
- !ruby/object:Gem::Version
|
40
53
|
version: '1.16'
|
41
54
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
55
|
+
name: coveralls_reborn
|
43
56
|
requirement: !ruby/object:Gem::Requirement
|
44
57
|
requirements:
|
45
58
|
- - ">="
|
@@ -108,6 +121,20 @@ dependencies:
|
|
108
121
|
- - "<"
|
109
122
|
- !ruby/object:Gem::Version
|
110
123
|
version: 0.18.0
|
124
|
+
- !ruby/object:Gem::Dependency
|
125
|
+
name: term-ansicolor
|
126
|
+
requirement: !ruby/object:Gem::Requirement
|
127
|
+
requirements:
|
128
|
+
- - "!="
|
129
|
+
- !ruby/object:Gem::Version
|
130
|
+
version: 1.11.1
|
131
|
+
type: :development
|
132
|
+
prerelease: false
|
133
|
+
version_requirements: !ruby/object:Gem::Requirement
|
134
|
+
requirements:
|
135
|
+
- - "!="
|
136
|
+
- !ruby/object:Gem::Version
|
137
|
+
version: 1.11.1
|
111
138
|
- !ruby/object:Gem::Dependency
|
112
139
|
name: yard
|
113
140
|
requirement: !ruby/object:Gem::Requirement
|
@@ -130,6 +157,8 @@ extensions: []
|
|
130
157
|
extra_rdoc_files: []
|
131
158
|
files:
|
132
159
|
- ".coveralls.yml"
|
160
|
+
- ".github/dependabot.yml"
|
161
|
+
- ".github/workflows/pages.yml"
|
133
162
|
- ".github/workflows/test.yml"
|
134
163
|
- ".gitignore"
|
135
164
|
- ".rspec"
|
@@ -150,14 +179,20 @@ files:
|
|
150
179
|
- lib/rubocop/cop/itamae/recipe_path.rb
|
151
180
|
- lib/rubocop/cop/itamae_cops.rb
|
152
181
|
- lib/rubocop/itamae.rb
|
182
|
+
- lib/rubocop/itamae/plugin.rb
|
153
183
|
- lib/rubocop/itamae/version.rb
|
154
184
|
- rubocop-itamae.gemspec
|
155
185
|
- tasks/new_cop.rake
|
156
186
|
homepage: https://github.com/sue445/rubocop-itamae
|
157
187
|
licenses:
|
158
188
|
- MIT
|
159
|
-
metadata:
|
160
|
-
|
189
|
+
metadata:
|
190
|
+
homepage_uri: https://github.com/sue445/rubocop-itamae
|
191
|
+
source_code_uri: https://github.com/sue445/rubocop-itamae
|
192
|
+
changelog_uri: https://github.com/sue445/rubocop-itamae/blob/master/CHANGELOG.md
|
193
|
+
documentation_uri: https://sue445.github.io/rubocop-itamae/
|
194
|
+
rubygems_mfa_required: 'true'
|
195
|
+
default_lint_roller_plugin: RuboCop::Itamae::Plugin
|
161
196
|
rdoc_options: []
|
162
197
|
require_paths:
|
163
198
|
- lib
|
@@ -165,15 +200,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
165
200
|
requirements:
|
166
201
|
- - ">="
|
167
202
|
- !ruby/object:Gem::Version
|
168
|
-
version: 2.
|
203
|
+
version: 2.7.0
|
169
204
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
170
205
|
requirements:
|
171
206
|
- - ">="
|
172
207
|
- !ruby/object:Gem::Version
|
173
208
|
version: '0'
|
174
209
|
requirements: []
|
175
|
-
rubygems_version: 3.2
|
176
|
-
signing_key:
|
210
|
+
rubygems_version: 3.6.2
|
177
211
|
specification_version: 4
|
178
212
|
summary: Code style checking for itamae recipes
|
179
213
|
test_files: []
|