puppet-lint-lookup_in_parameter-check 1.1.0 → 3.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/labeler.yml +6 -0
- data/.github/release.yml +41 -0
- data/.github/workflows/release.yml +91 -16
- data/.github/workflows/test.yml +38 -15
- data/.msync.yml +6 -0
- data/.rubocop.yml +10 -2
- data/.rubocop_todo.yml +25 -0
- data/CHANGELOG.md +16 -0
- data/Gemfile +11 -5
- data/Rakefile +19 -2
- data/lib/puppet-lint/plugins/lookup_in_parameter.rb +1 -0
- data/puppet-lint-lookup_in_parameter-check.gemspec +4 -10
- metadata +12 -104
- data/.github/dependabot.yml +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 757e3577a9837790b2d55071d6daa2efaacabd586965b0bb02835ddef33c776b
|
4
|
+
data.tar.gz: ac27ebad28cee661397cdb786f523a384f200559004778b5b73d11b13c452893
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74c234d27c50d646149c3bb9bb0ddf8615f06a49e128b41195fdbbf62be74bd0722552d09ef33fbd3e8064ecb256815aa49149e8d38bd8036e85dd012e7d17d7
|
7
|
+
data.tar.gz: 56b25e9d44e11c63134de817b0469485f2a3202069fa47cdb14e5f87dd41f46fd3debedf6e779a99382bc7fde78ac4936485e80349fe775a013910d4a56b413e
|
data/.github/labeler.yml
ADDED
data/.github/release.yml
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
---
|
2
|
+
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
|
3
|
+
|
4
|
+
changelog:
|
5
|
+
exclude:
|
6
|
+
labels:
|
7
|
+
- duplicate
|
8
|
+
- invalid
|
9
|
+
- modulesync
|
10
|
+
- question
|
11
|
+
- skip-changelog
|
12
|
+
- wont-fix
|
13
|
+
- wontfix
|
14
|
+
- github_actions
|
15
|
+
|
16
|
+
categories:
|
17
|
+
- title: Breaking Changes 🛠
|
18
|
+
labels:
|
19
|
+
- backwards-incompatible
|
20
|
+
|
21
|
+
- title: New Features 🎉
|
22
|
+
labels:
|
23
|
+
- enhancement
|
24
|
+
|
25
|
+
- title: Bug Fixes 🐛
|
26
|
+
labels:
|
27
|
+
- bug
|
28
|
+
- bugfix
|
29
|
+
|
30
|
+
- title: Documentation Updates 📚
|
31
|
+
labels:
|
32
|
+
- documentation
|
33
|
+
- docs
|
34
|
+
|
35
|
+
- title: Dependency Updates ⬆️
|
36
|
+
labels:
|
37
|
+
- dependencies
|
38
|
+
|
39
|
+
- title: Other Changes
|
40
|
+
labels:
|
41
|
+
- "*"
|
@@ -1,31 +1,106 @@
|
|
1
|
-
|
1
|
+
---
|
2
|
+
name: Gem Release
|
2
3
|
|
3
4
|
on:
|
4
5
|
push:
|
5
6
|
tags:
|
6
7
|
- '*'
|
7
8
|
|
9
|
+
permissions: {}
|
10
|
+
|
8
11
|
jobs:
|
9
|
-
release:
|
10
|
-
|
12
|
+
build-release:
|
13
|
+
# Prevent releases from forked repositories
|
11
14
|
if: github.repository_owner == 'voxpupuli'
|
15
|
+
name: Build the gem
|
16
|
+
runs-on: ubuntu-24.04
|
12
17
|
steps:
|
13
|
-
- uses: actions/checkout@
|
14
|
-
- name: Install Ruby
|
18
|
+
- uses: actions/checkout@v5
|
19
|
+
- name: Install Ruby
|
15
20
|
uses: ruby/setup-ruby@v1
|
16
21
|
with:
|
17
|
-
ruby-version: '
|
18
|
-
bundler: 'none'
|
22
|
+
ruby-version: 'ruby'
|
19
23
|
- name: Build gem
|
20
|
-
|
24
|
+
shell: bash
|
25
|
+
run: gem build --verbose *.gemspec
|
26
|
+
- name: Upload gem to GitHub cache
|
27
|
+
uses: actions/upload-artifact@v4
|
28
|
+
with:
|
29
|
+
name: gem-artifact
|
30
|
+
path: '*.gem'
|
31
|
+
retention-days: 1
|
32
|
+
compression-level: 0
|
33
|
+
|
34
|
+
create-github-release:
|
35
|
+
needs: build-release
|
36
|
+
name: Create GitHub release
|
37
|
+
runs-on: ubuntu-24.04
|
38
|
+
permissions:
|
39
|
+
contents: write # clone repo and create release
|
40
|
+
steps:
|
41
|
+
- name: Download gem from GitHub cache
|
42
|
+
uses: actions/download-artifact@v5
|
43
|
+
with:
|
44
|
+
name: gem-artifact
|
45
|
+
- name: Create Release
|
46
|
+
shell: bash
|
47
|
+
env:
|
48
|
+
GH_TOKEN: ${{ github.token }}
|
49
|
+
run: gh release create --repo ${{ github.repository }} ${{ github.ref_name }} --generate-notes *.gem
|
50
|
+
|
51
|
+
release-to-github:
|
52
|
+
needs: build-release
|
53
|
+
name: Release to GitHub
|
54
|
+
runs-on: ubuntu-24.04
|
55
|
+
permissions:
|
56
|
+
packages: write # publish to rubygems.pkg.github.com
|
57
|
+
steps:
|
58
|
+
- name: Download gem from GitHub cache
|
59
|
+
uses: actions/download-artifact@v5
|
60
|
+
with:
|
61
|
+
name: gem-artifact
|
62
|
+
- name: Publish gem to GitHub packages
|
63
|
+
run: gem push --host https://rubygems.pkg.github.com/${{ github.repository_owner }} *.gem
|
64
|
+
env:
|
65
|
+
GEM_HOST_API_KEY: ${{ secrets.GITHUB_TOKEN }}
|
66
|
+
|
67
|
+
release-to-rubygems:
|
68
|
+
needs: build-release
|
69
|
+
name: Release gem to rubygems.org
|
70
|
+
runs-on: ubuntu-24.04
|
71
|
+
environment: release # recommended by rubygems.org
|
72
|
+
permissions:
|
73
|
+
id-token: write # rubygems.org authentication
|
74
|
+
steps:
|
75
|
+
- name: Download gem from GitHub cache
|
76
|
+
uses: actions/download-artifact@v5
|
77
|
+
with:
|
78
|
+
name: gem-artifact
|
79
|
+
- uses: rubygems/configure-rubygems-credentials@v1.0.0
|
21
80
|
- name: Publish gem to rubygems.org
|
81
|
+
shell: bash
|
22
82
|
run: gem push *.gem
|
23
|
-
|
24
|
-
|
25
|
-
|
83
|
+
|
84
|
+
release-verification:
|
85
|
+
name: Check that all releases are done
|
86
|
+
runs-on: ubuntu-24.04
|
87
|
+
permissions:
|
88
|
+
contents: read # minimal permissions that we have to grant
|
89
|
+
needs:
|
90
|
+
- create-github-release
|
91
|
+
- release-to-github
|
92
|
+
- release-to-rubygems
|
93
|
+
steps:
|
94
|
+
- name: Download gem from GitHub cache
|
95
|
+
uses: actions/download-artifact@v5
|
96
|
+
with:
|
97
|
+
name: gem-artifact
|
98
|
+
- name: Install Ruby
|
99
|
+
uses: ruby/setup-ruby@v1
|
100
|
+
with:
|
101
|
+
ruby-version: 'ruby'
|
102
|
+
- name: Wait for release to propagate
|
103
|
+
shell: bash
|
26
104
|
run: |
|
27
|
-
|
28
|
-
|
29
|
-
chmod 0600 ~/.gem/credentials
|
30
|
-
- name: Publish gem to GitHub packages
|
31
|
-
run: gem push --key github --host https://rubygems.pkg.github.com/${{ github.repository_owner }} *.gem
|
105
|
+
gem install rubygems-await
|
106
|
+
gem await *.gem
|
data/.github/workflows/test.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
name: Test
|
2
3
|
|
3
4
|
on:
|
@@ -5,29 +6,38 @@ on:
|
|
5
6
|
push:
|
6
7
|
branches:
|
7
8
|
- master
|
9
|
+
- main
|
8
10
|
|
9
|
-
|
10
|
-
|
11
|
+
permissions:
|
12
|
+
contents: read
|
11
13
|
|
12
14
|
jobs:
|
15
|
+
rubocop_and_matrix:
|
16
|
+
runs-on: ubuntu-24.04
|
17
|
+
outputs:
|
18
|
+
ruby: ${{ steps.ruby.outputs.versions }}
|
19
|
+
steps:
|
20
|
+
- uses: actions/checkout@v5
|
21
|
+
- name: Setup ruby
|
22
|
+
uses: ruby/setup-ruby@v1
|
23
|
+
with:
|
24
|
+
ruby-version: '3.3'
|
25
|
+
bundler-cache: true
|
26
|
+
- name: Run rake rubocop
|
27
|
+
run: bundle exec rake rubocop
|
28
|
+
- id: ruby
|
29
|
+
uses: voxpupuli/ruby-version@v1
|
30
|
+
|
13
31
|
test:
|
14
|
-
runs-on: ubuntu-
|
32
|
+
runs-on: ubuntu-24.04
|
33
|
+
needs: rubocop_and_matrix
|
15
34
|
strategy:
|
16
35
|
fail-fast: false
|
17
36
|
matrix:
|
18
|
-
|
19
|
-
- ruby: "2.4"
|
20
|
-
- ruby: "2.5"
|
21
|
-
- ruby: "2.6"
|
22
|
-
- ruby: "2.7"
|
23
|
-
- ruby: "3.0"
|
24
|
-
- ruby: "3.1"
|
25
|
-
coverage: "yes"
|
26
|
-
env:
|
27
|
-
COVERAGE: ${{ matrix.coverage }}
|
37
|
+
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
|
28
38
|
name: Ruby ${{ matrix.ruby }}
|
29
39
|
steps:
|
30
|
-
- uses: actions/checkout@
|
40
|
+
- uses: actions/checkout@v5
|
31
41
|
- name: Install Ruby ${{ matrix.ruby }}
|
32
42
|
uses: ruby/setup-ruby@v1
|
33
43
|
with:
|
@@ -36,4 +46,17 @@ jobs:
|
|
36
46
|
- name: Run tests
|
37
47
|
run: bundle exec rake spec
|
38
48
|
- name: Verify gem builds
|
39
|
-
run: gem build *.gemspec
|
49
|
+
run: gem build --strict --verbose *.gemspec
|
50
|
+
|
51
|
+
tests:
|
52
|
+
if: always()
|
53
|
+
needs:
|
54
|
+
- rubocop_and_matrix
|
55
|
+
- test
|
56
|
+
runs-on: ubuntu-24.04
|
57
|
+
name: Test suite
|
58
|
+
steps:
|
59
|
+
- name: Decide whether the needed jobs succeeded or failed
|
60
|
+
uses: re-actors/alls-green@release/v1
|
61
|
+
with:
|
62
|
+
jobs: ${{ toJSON(needs) }}
|
data/.msync.yml
ADDED
data/.rubocop.yml
CHANGED
@@ -1,6 +1,14 @@
|
|
1
|
+
---
|
2
|
+
# Managed by modulesync - DO NOT EDIT
|
3
|
+
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
|
4
|
+
|
5
|
+
inherit_from: .rubocop_todo.yml
|
1
6
|
inherit_gem:
|
2
|
-
voxpupuli-
|
7
|
+
voxpupuli-rubocop: rubocop.yml
|
3
8
|
|
4
|
-
|
9
|
+
Naming/FileName:
|
5
10
|
Exclude:
|
6
11
|
- "*.gemspec"
|
12
|
+
|
13
|
+
AllCops:
|
14
|
+
TargetRubyVersion: 3.2
|
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config --no-auto-gen-timestamp`
|
3
|
+
# using RuboCop version 1.79.2.
|
4
|
+
# The point is for the user to remove these configuration records
|
5
|
+
# one by one as the offenses are removed from the code base.
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
8
|
+
|
9
|
+
# Offense count: 1
|
10
|
+
# Configuration parameters: Prefixes, AllowedPatterns.
|
11
|
+
# Prefixes: when, with, without
|
12
|
+
RSpec/ContextWording:
|
13
|
+
Exclude:
|
14
|
+
- 'spec/puppet-lint/plugins/lookup_in_parameter/lookup_in_parameter_spec.rb'
|
15
|
+
|
16
|
+
# Offense count: 1
|
17
|
+
# Configuration parameters: IgnoredMetadata.
|
18
|
+
RSpec/DescribeClass:
|
19
|
+
Exclude:
|
20
|
+
- '**/spec/features/**/*'
|
21
|
+
- '**/spec/requests/**/*'
|
22
|
+
- '**/spec/routing/**/*'
|
23
|
+
- '**/spec/system/**/*'
|
24
|
+
- '**/spec/views/**/*'
|
25
|
+
- 'spec/puppet-lint/plugins/lookup_in_parameter/lookup_in_parameter_spec.rb'
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,22 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [3.0.0](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/tree/3.0.0) (2025-09-25)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/compare/2.0.0...3.0.0)
|
8
|
+
|
9
|
+
**Breaking changes:**
|
10
|
+
|
11
|
+
- Require Ruby 3.2+ & puppet-lint 5.1+ [\#14](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/pull/14) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
|
13
|
+
## [2.0.0](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/tree/2.0.0) (2023-04-21)
|
14
|
+
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/compare/1.1.0...2.0.0)
|
16
|
+
|
17
|
+
**Breaking changes:**
|
18
|
+
|
19
|
+
- Drop Ruby \< 2.7; Add RuboCop [\#6](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/pull/6) ([bastelfreak](https://github.com/bastelfreak))
|
20
|
+
|
5
21
|
## [1.1.0](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/tree/1.1.0) (2023-02-24)
|
6
22
|
|
7
23
|
[Full Changelog](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/compare/1.0.0...1.1.0)
|
data/Gemfile
CHANGED
@@ -1,12 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
|
2
4
|
|
3
5
|
gemspec
|
4
6
|
|
5
|
-
group :release do
|
6
|
-
gem '
|
7
|
+
group :release, optional: true do
|
8
|
+
gem 'faraday-retry', '~> 2.1', require: false
|
9
|
+
gem 'github_changelog_generator', '~> 1.16.4', require: false
|
7
10
|
end
|
8
11
|
|
9
|
-
group :
|
10
|
-
gem '
|
11
|
-
gem '
|
12
|
+
group :development do
|
13
|
+
gem 'rake', '~> 13.0', '>= 13.0.6'
|
14
|
+
gem 'rspec', '~> 3.12'
|
15
|
+
gem 'rspec-collection_matchers', '~> 1.2'
|
16
|
+
gem 'rspec-its', '>= 1.3', '< 3'
|
17
|
+
gem 'voxpupuli-rubocop', '~> 4.2.0'
|
12
18
|
end
|
data/Rakefile
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
require 'rspec/core/rake_task'
|
2
4
|
|
3
5
|
RSpec::Core::RakeTask.new(:spec)
|
@@ -7,13 +9,28 @@ task default: :spec
|
|
7
9
|
begin
|
8
10
|
require 'rubygems'
|
9
11
|
require 'github_changelog_generator/task'
|
10
|
-
|
12
|
+
rescue LoadError
|
13
|
+
# github-changelog-generator is an optional group
|
14
|
+
else
|
11
15
|
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
12
16
|
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
|
13
|
-
config.exclude_labels = %w
|
17
|
+
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog modulesync]
|
14
18
|
config.user = 'voxpupuli'
|
15
19
|
config.project = 'puppet-lint-lookup_in_parameter-check'
|
16
20
|
config.future_release = Gem::Specification.load("#{config.project}.gemspec").version
|
17
21
|
end
|
22
|
+
end
|
23
|
+
|
24
|
+
begin
|
25
|
+
require 'rubocop/rake_task'
|
18
26
|
rescue LoadError
|
27
|
+
# RuboCop is an optional group
|
28
|
+
else
|
29
|
+
RuboCop::RakeTask.new(:rubocop) do |task|
|
30
|
+
# These make the rubocop experience maybe slightly less terrible
|
31
|
+
task.options = ['--display-cop-names', '--display-style-guide', '--extra-details']
|
32
|
+
|
33
|
+
# Use Rubocop's Github Actions formatter if possible
|
34
|
+
task.formatters << 'github' if ENV['GITHUB_ACTIONS'] == 'true'
|
35
|
+
end
|
19
36
|
end
|
@@ -2,17 +2,15 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = 'puppet-lint-lookup_in_parameter-check'
|
5
|
-
spec.version = '
|
5
|
+
spec.version = '3.0.0'
|
6
6
|
spec.authors = ['Romain Tartière', 'Vox Pupuli']
|
7
7
|
spec.email = ['voxpupuli@groups.io']
|
8
8
|
|
9
9
|
spec.summary = 'Check lookup is not used in parameters'
|
10
10
|
spec.homepage = 'https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check'
|
11
11
|
spec.license = 'MIT'
|
12
|
-
spec.required_ruby_version = '>= 2.4.0'
|
13
12
|
|
14
13
|
spec.metadata['homepage_uri'] = spec.homepage
|
15
|
-
spec.metadata['source_code_uri'] = spec.homepage
|
16
14
|
spec.metadata['changelog_uri'] = "#{spec.homepage}/blob/main/CHANGELOG.md"
|
17
15
|
|
18
16
|
# Specify which files should be added to the gem when it is released.
|
@@ -24,11 +22,7 @@ Gem::Specification.new do |spec|
|
|
24
22
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
25
23
|
spec.require_paths = ['lib']
|
26
24
|
|
27
|
-
spec.
|
28
|
-
|
29
|
-
spec.
|
30
|
-
spec.add_development_dependency 'rspec-collection_matchers'
|
31
|
-
spec.add_development_dependency 'rspec-its'
|
32
|
-
spec.add_development_dependency 'rubocop'
|
33
|
-
spec.add_development_dependency 'voxpupuli-test'
|
25
|
+
spec.required_ruby_version = '>= 3.2'
|
26
|
+
|
27
|
+
spec.add_dependency 'puppet-lint', '~> 5.1'
|
34
28
|
end
|
metadata
CHANGED
@@ -1,121 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet-lint-lookup_in_parameter-check
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Romain Tartière
|
8
8
|
- Vox Pupuli
|
9
|
-
autorequire:
|
10
9
|
bindir: exe
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: puppet-lint
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
16
|
requirements:
|
18
|
-
- - "
|
17
|
+
- - "~>"
|
19
18
|
- !ruby/object:Gem::Version
|
20
|
-
version: '
|
21
|
-
- - "<"
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: '4'
|
19
|
+
version: '5.1'
|
24
20
|
type: :runtime
|
25
21
|
prerelease: false
|
26
22
|
version_requirements: !ruby/object:Gem::Requirement
|
27
23
|
requirements:
|
28
|
-
- - "
|
29
|
-
- !ruby/object:Gem::Version
|
30
|
-
version: '2.0'
|
31
|
-
- - "<"
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '4'
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: rake
|
36
|
-
requirement: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
|
-
type: :development
|
42
|
-
prerelease: false
|
43
|
-
version_requirements: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
- !ruby/object:Gem::Dependency
|
49
|
-
name: rspec
|
50
|
-
requirement: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
type: :development
|
56
|
-
prerelease: false
|
57
|
-
version_requirements: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
- !ruby/object:Gem::Dependency
|
63
|
-
name: rspec-collection_matchers
|
64
|
-
requirement: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
|
-
type: :development
|
70
|
-
prerelease: false
|
71
|
-
version_requirements: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - ">="
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '0'
|
76
|
-
- !ruby/object:Gem::Dependency
|
77
|
-
name: rspec-its
|
78
|
-
requirement: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - ">="
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '0'
|
83
|
-
type: :development
|
84
|
-
prerelease: false
|
85
|
-
version_requirements: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
- !ruby/object:Gem::Dependency
|
91
|
-
name: rubocop
|
92
|
-
requirement: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
|
-
type: :development
|
98
|
-
prerelease: false
|
99
|
-
version_requirements: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
- !ruby/object:Gem::Dependency
|
105
|
-
name: voxpupuli-test
|
106
|
-
requirement: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - ">="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
|
-
type: :development
|
112
|
-
prerelease: false
|
113
|
-
version_requirements: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
24
|
+
- - "~>"
|
116
25
|
- !ruby/object:Gem::Version
|
117
|
-
version: '
|
118
|
-
description:
|
26
|
+
version: '5.1'
|
119
27
|
email:
|
120
28
|
- voxpupuli@groups.io
|
121
29
|
executables: []
|
@@ -126,12 +34,15 @@ files:
|
|
126
34
|
- ".github/ISSUE_TEMPLATE.md"
|
127
35
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
128
36
|
- ".github/SECURITY.md"
|
129
|
-
- ".github/
|
37
|
+
- ".github/labeler.yml"
|
38
|
+
- ".github/release.yml"
|
130
39
|
- ".github/workflows/release.yml"
|
131
40
|
- ".github/workflows/test.yml"
|
132
41
|
- ".gitignore"
|
42
|
+
- ".msync.yml"
|
133
43
|
- ".rspec"
|
134
44
|
- ".rubocop.yml"
|
45
|
+
- ".rubocop_todo.yml"
|
135
46
|
- CHANGELOG.md
|
136
47
|
- CODE_OF_CONDUCT.md
|
137
48
|
- Gemfile
|
@@ -147,9 +58,7 @@ licenses:
|
|
147
58
|
- MIT
|
148
59
|
metadata:
|
149
60
|
homepage_uri: https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check
|
150
|
-
source_code_uri: https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check
|
151
61
|
changelog_uri: https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/blob/main/CHANGELOG.md
|
152
|
-
post_install_message:
|
153
62
|
rdoc_options: []
|
154
63
|
require_paths:
|
155
64
|
- lib
|
@@ -157,15 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
157
66
|
requirements:
|
158
67
|
- - ">="
|
159
68
|
- !ruby/object:Gem::Version
|
160
|
-
version: 2
|
69
|
+
version: '3.2'
|
161
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
162
71
|
requirements:
|
163
72
|
- - ">="
|
164
73
|
- !ruby/object:Gem::Version
|
165
74
|
version: '0'
|
166
75
|
requirements: []
|
167
|
-
rubygems_version: 3.
|
168
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.9
|
169
77
|
specification_version: 4
|
170
78
|
summary: Check lookup is not used in parameters
|
171
79
|
test_files: []
|