rubocop-itamae 0.1.5 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ebcf4807f37ebc43aef7405761450c8b2782e7450ffcdb720ba80bce11a581b
4
- data.tar.gz: b5d1010a2bb6f997a591fae1dcee7970e4d0e8667217b1ac4d509ce1184851a5
3
+ metadata.gz: d3dc78e48b2caa8da158c09037d9f70dd3c6452b7b69b9553c09aadbb0f2ea2f
4
+ data.tar.gz: bf840e36d0987f8710188d5201b09f5a76f6e355dfe24bbd1b78d6337452f1ca
5
5
  SHA512:
6
- metadata.gz: 55ec446d819b90560e5512360f4434c06eddce9efd3e7a7ceec9b10c6192c170b94546d5fa2718311a676a6ad1f661612807f7ee9b22663672902e6b963083e1
7
- data.tar.gz: 031f8e878476470e21f75925a57eeb56588038d3280032c3cd817f1940767a0e13f8d4ff40622566386aab61cb76f9e80950de04e0641dafa91ab99dd10d2158
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 }}
@@ -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
- - ruby:2.5
30
- - ruby:2.6
31
- - ruby:2.7
32
- - ruby:3.0
33
- - rubylang/ruby:master-nightly-bionic
34
- include:
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@v2
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
- path: vendor/bundle
47
- key: v1-gem-${{ runner.os }}-${{ matrix.ruby }}-${{ github.sha }}
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
- - name: bundle update
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
- - name: Run test
68
- run: |
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: matrix.ruby >= 'ruby:2.4' && always()
56
+ if: always()
80
57
  continue-on-error: true
81
58
 
82
59
  - name: Slack Notification (not success)
83
- uses: lazy-actions/slatify@master
60
+ uses: act10ns/slack@v2
84
61
  if: "! success()"
85
62
  continue-on-error: true
86
63
  with:
87
- job_name: ${{ format('*build* ({0})', matrix.ruby) }}
88
- type: ${{ job.status }}
89
- icon_emoji: ":octocat:"
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: lazy-actions/slatify@master
76
+ uses: act10ns/slack@v2
102
77
  if: always()
103
78
  continue-on-error: true
104
79
  with:
105
- job_name: '*build*'
106
- type: ${{ job.status }}
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.13.0+ requires ruby 2.5+
6
- TargetRubyVersion: 2.5
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:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ## master
2
- [full changelog](http://github.com/sue445/rubocop-itamae/compare/v0.1.5...master)
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
3
10
 
4
11
  ## v0.1.5
5
12
  [full changelog](http://github.com/sue445/rubocop-itamae/compare/v0.1.4...v0.1.5)
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
  [![Gem Version](https://badge.fury.io/rb/rubocop-itamae.svg)](https://badge.fury.io/rb/rubocop-itamae)
6
- [![Build Status](https://github.com/sue445/rubocop-itamae/workflows/test/badge.svg?branch=master)](https://github.com/sue445/rubocop-itamae/actions?query=workflow%3Atest)
6
+ [![test](https://github.com/sue445/rubocop-itamae/actions/workflows/test.yml/badge.svg)](https://github.com/sue445/rubocop-itamae/actions/workflows/test.yml)
7
7
  [![Coverage Status](https://coveralls.io/repos/github/sue445/rubocop-itamae/badge.svg?branch=master)](https://coveralls.io/github/sue445/rubocop-itamae?branch=master)
8
8
  [![Maintainability](https://api.codeclimate.com/v1/badges/bf2f4b2cbf9c2cfc0e92/maintainability)](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
- require: rubocop-itamae
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: http://www.rubydoc.info/gems/rubocop-itamae/RuboCop/Cop/Itamae/CdInExecute
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: http://www.rubydoc.info/gems/rubocop-itamae/RuboCop/Cop/Itamae/CommandEqualsToName
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: http://www.rubydoc.info/gems/rubocop-itamae/RuboCop/Cop/Itamae/NeedlessDefaultAction
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: http://www.rubydoc.info/gems/rubocop-itamae/RuboCop/Cop/Itamae/RecipePath
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Itamae
5
- VERSION = '0.1.5'
5
+ VERSION = '0.2.0'
6
6
  end
7
7
  end
@@ -4,5 +4,6 @@ require 'rubocop'
4
4
 
5
5
  require_relative 'rubocop/itamae'
6
6
  require_relative 'rubocop/itamae/version'
7
+ require_relative 'rubocop/itamae/plugin'
7
8
 
8
9
  require_relative 'rubocop/cop/itamae_cops'
@@ -15,17 +15,12 @@ Gem::Specification.new do |spec|
15
15
  spec.homepage = 'https://github.com/sue445/rubocop-itamae'
16
16
  spec.license = 'MIT'
17
17
 
18
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
19
- # to allow pushing to a single host or delete this section to allow pushing to any host.
20
- if spec.respond_to?(:metadata)
21
- spec.metadata['homepage_uri'] = spec.homepage
22
- spec.metadata['source_code_uri'] = spec.homepage
23
- spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/master/CHANGELOG.md"
24
- spec.metadata['rubygems_mfa_required'] = 'true'
25
- else
26
- raise 'RubyGems 2.0 or newer is required to protect against ' \
27
- 'public gem pushes.'
28
- end
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'
29
24
 
30
25
  spec.files = `git ls-files -z`.split("\x0").reject do |f|
31
26
  f.match(%r{^(test|spec|features)/})
@@ -34,16 +29,17 @@ Gem::Specification.new do |spec|
34
29
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
35
30
  spec.require_paths = ['lib']
36
31
 
37
- spec.required_ruby_version = '>= 2.5.0'
32
+ spec.required_ruby_version = '>= 2.7.0'
38
33
 
39
- spec.add_dependency 'rubocop', '>= 1.13.0'
34
+ spec.add_dependency 'lint_roller'
35
+ spec.add_dependency 'rubocop', '>= 1.72.0'
40
36
 
41
37
  spec.add_development_dependency 'bundler', '>= 1.16'
42
- spec.add_development_dependency 'coveralls'
38
+ spec.add_development_dependency 'coveralls_reborn'
43
39
  spec.add_development_dependency 'rake', '>= 11.0'
44
40
  spec.add_development_dependency 'rspec', '~> 3.0'
45
- spec.add_development_dependency 'rubocop', '>= 1.23.0'
46
41
  spec.add_development_dependency 'rubocop_auto_corrector'
47
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
48
44
  spec.add_development_dependency 'yard'
49
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.1.5
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: 2021-11-18 00:00:00.000000000 Z
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.13.0
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.13.0
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: coveralls
55
+ name: coveralls_reborn
43
56
  requirement: !ruby/object:Gem::Requirement
44
57
  requirements:
45
58
  - - ">="
@@ -81,47 +94,47 @@ dependencies:
81
94
  - !ruby/object:Gem::Version
82
95
  version: '3.0'
83
96
  - !ruby/object:Gem::Dependency
84
- name: rubocop
97
+ name: rubocop_auto_corrector
85
98
  requirement: !ruby/object:Gem::Requirement
86
99
  requirements:
87
100
  - - ">="
88
101
  - !ruby/object:Gem::Version
89
- version: 1.23.0
102
+ version: '0'
90
103
  type: :development
91
104
  prerelease: false
92
105
  version_requirements: !ruby/object:Gem::Requirement
93
106
  requirements:
94
107
  - - ">="
95
108
  - !ruby/object:Gem::Version
96
- version: 1.23.0
109
+ version: '0'
97
110
  - !ruby/object:Gem::Dependency
98
- name: rubocop_auto_corrector
111
+ name: simplecov
99
112
  requirement: !ruby/object:Gem::Requirement
100
113
  requirements:
101
- - - ">="
114
+ - - "<"
102
115
  - !ruby/object:Gem::Version
103
- version: '0'
116
+ version: 0.18.0
104
117
  type: :development
105
118
  prerelease: false
106
119
  version_requirements: !ruby/object:Gem::Requirement
107
120
  requirements:
108
- - - ">="
121
+ - - "<"
109
122
  - !ruby/object:Gem::Version
110
- version: '0'
123
+ version: 0.18.0
111
124
  - !ruby/object:Gem::Dependency
112
- name: simplecov
125
+ name: term-ansicolor
113
126
  requirement: !ruby/object:Gem::Requirement
114
127
  requirements:
115
- - - "<"
128
+ - - "!="
116
129
  - !ruby/object:Gem::Version
117
- version: 0.18.0
130
+ version: 1.11.1
118
131
  type: :development
119
132
  prerelease: false
120
133
  version_requirements: !ruby/object:Gem::Requirement
121
134
  requirements:
122
- - - "<"
135
+ - - "!="
123
136
  - !ruby/object:Gem::Version
124
- version: 0.18.0
137
+ version: 1.11.1
125
138
  - !ruby/object:Gem::Dependency
126
139
  name: yard
127
140
  requirement: !ruby/object:Gem::Requirement
@@ -144,6 +157,8 @@ extensions: []
144
157
  extra_rdoc_files: []
145
158
  files:
146
159
  - ".coveralls.yml"
160
+ - ".github/dependabot.yml"
161
+ - ".github/workflows/pages.yml"
147
162
  - ".github/workflows/test.yml"
148
163
  - ".gitignore"
149
164
  - ".rspec"
@@ -164,6 +179,7 @@ files:
164
179
  - lib/rubocop/cop/itamae/recipe_path.rb
165
180
  - lib/rubocop/cop/itamae_cops.rb
166
181
  - lib/rubocop/itamae.rb
182
+ - lib/rubocop/itamae/plugin.rb
167
183
  - lib/rubocop/itamae/version.rb
168
184
  - rubocop-itamae.gemspec
169
185
  - tasks/new_cop.rake
@@ -174,8 +190,9 @@ metadata:
174
190
  homepage_uri: https://github.com/sue445/rubocop-itamae
175
191
  source_code_uri: https://github.com/sue445/rubocop-itamae
176
192
  changelog_uri: https://github.com/sue445/rubocop-itamae/blob/master/CHANGELOG.md
193
+ documentation_uri: https://sue445.github.io/rubocop-itamae/
177
194
  rubygems_mfa_required: 'true'
178
- post_install_message:
195
+ default_lint_roller_plugin: RuboCop::Itamae::Plugin
179
196
  rdoc_options: []
180
197
  require_paths:
181
198
  - lib
@@ -183,15 +200,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
183
200
  requirements:
184
201
  - - ">="
185
202
  - !ruby/object:Gem::Version
186
- version: 2.5.0
203
+ version: 2.7.0
187
204
  required_rubygems_version: !ruby/object:Gem::Requirement
188
205
  requirements:
189
206
  - - ">="
190
207
  - !ruby/object:Gem::Version
191
208
  version: '0'
192
209
  requirements: []
193
- rubygems_version: 3.2.22
194
- signing_key:
210
+ rubygems_version: 3.6.2
195
211
  specification_version: 4
196
212
  summary: Code style checking for itamae recipes
197
213
  test_files: []