puppet-lint-lookup_in_parameter-check 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +9 -0
- data/.github/workflows/release.yml +1 -1
- data/.github/workflows/test.yml +7 -3
- data/CHANGELOG.md +8 -0
- data/puppet-lint-lookup_in_parameter-check.gemspec +4 -4
- metadata +14 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25d58ae620dec30e5bd78a664c9ac0c4fb2ac2a0e44c82d113c068ac4b6beb89
|
4
|
+
data.tar.gz: b0ddf10b07b01ac930dfa044cbd1ff0f10474ab753fa7c64d6b9994aa1ab8839
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 266b35be47b5c98630c581f4380b1c9b9718b6d727171878dd441bd3a2dad914b8d5e0579f8a7db64e59610ed5eaeb62800388912dd125caab5d98c631dfe1e9
|
7
|
+
data.tar.gz: c678dca69387419cda85db1722666c5d5164a86b6b76f74da79843ba494a79d87161e1e27935d9afcb427fd01b97ec888357028822ab3a8e83d66275f3509337
|
data/.github/workflows/test.yml
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
name: Test
|
2
2
|
|
3
3
|
on:
|
4
|
-
|
5
|
-
|
4
|
+
pull_request: {}
|
5
|
+
push:
|
6
|
+
branches:
|
7
|
+
- master
|
6
8
|
|
7
9
|
env:
|
8
10
|
BUNDLE_WITHOUT: release
|
@@ -19,11 +21,13 @@ jobs:
|
|
19
21
|
- ruby: "2.6"
|
20
22
|
- ruby: "2.7"
|
21
23
|
- ruby: "3.0"
|
24
|
+
- ruby: "3.1"
|
22
25
|
coverage: "yes"
|
23
26
|
env:
|
24
27
|
COVERAGE: ${{ matrix.coverage }}
|
28
|
+
name: Ruby ${{ matrix.ruby }}
|
25
29
|
steps:
|
26
|
-
- uses: actions/checkout@
|
30
|
+
- uses: actions/checkout@v3
|
27
31
|
- name: Install Ruby ${{ matrix.ruby }}
|
28
32
|
uses: ruby/setup-ruby@v1
|
29
33
|
with:
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,14 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [1.1.0](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/tree/1.1.0) (2023-02-24)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/compare/1.0.0...1.1.0)
|
8
|
+
|
9
|
+
**Merged pull requests:**
|
10
|
+
|
11
|
+
- Mark compatible with puppet-lint 3.x [\#3](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/pull/3) ([ekohl](https://github.com/ekohl))
|
12
|
+
|
5
13
|
## [1.0.0](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/tree/1.0.0) (2021-10-28)
|
6
14
|
|
7
15
|
[Full Changelog](https://github.com/voxpupuli/puppet-lint-lookup_in_parameter-check/compare/5a7c1367870df1f8cd84621e74f50cc850c66311...1.0.0)
|
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = 'puppet-lint-lookup_in_parameter-check'
|
5
|
-
spec.version = '1.
|
6
|
-
spec.authors = ['Romain Tartière']
|
7
|
-
spec.email = ['
|
5
|
+
spec.version = '1.1.0'
|
6
|
+
spec.authors = ['Romain Tartière', 'Vox Pupuli']
|
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'
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
25
25
|
spec.require_paths = ['lib']
|
26
26
|
|
27
|
-
spec.add_dependency 'puppet-lint', '
|
27
|
+
spec.add_dependency 'puppet-lint', '>= 2.0', '< 4'
|
28
28
|
spec.add_development_dependency 'rake'
|
29
29
|
spec.add_development_dependency 'rspec'
|
30
30
|
spec.add_development_dependency 'rspec-collection_matchers'
|
metadata
CHANGED
@@ -1,29 +1,36 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet-lint-lookup_in_parameter-check
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Romain Tartière
|
8
|
+
- Vox Pupuli
|
8
9
|
autorequire:
|
9
10
|
bindir: exe
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2023-02-24 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: puppet-lint
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
16
17
|
requirements:
|
17
|
-
- - "
|
18
|
+
- - ">="
|
18
19
|
- !ruby/object:Gem::Version
|
19
20
|
version: '2.0'
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '4'
|
20
24
|
type: :runtime
|
21
25
|
prerelease: false
|
22
26
|
version_requirements: !ruby/object:Gem::Requirement
|
23
27
|
requirements:
|
24
|
-
- - "
|
28
|
+
- - ">="
|
25
29
|
- !ruby/object:Gem::Version
|
26
30
|
version: '2.0'
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4'
|
27
34
|
- !ruby/object:Gem::Dependency
|
28
35
|
name: rake
|
29
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -110,7 +117,7 @@ dependencies:
|
|
110
117
|
version: '0'
|
111
118
|
description:
|
112
119
|
email:
|
113
|
-
-
|
120
|
+
- voxpupuli@groups.io
|
114
121
|
executables: []
|
115
122
|
extensions: []
|
116
123
|
extra_rdoc_files: []
|
@@ -119,6 +126,7 @@ files:
|
|
119
126
|
- ".github/ISSUE_TEMPLATE.md"
|
120
127
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
121
128
|
- ".github/SECURITY.md"
|
129
|
+
- ".github/dependabot.yml"
|
122
130
|
- ".github/workflows/release.yml"
|
123
131
|
- ".github/workflows/test.yml"
|
124
132
|
- ".gitignore"
|
@@ -156,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
164
|
- !ruby/object:Gem::Version
|
157
165
|
version: '0'
|
158
166
|
requirements: []
|
159
|
-
rubygems_version: 3.2.
|
167
|
+
rubygems_version: 3.2.33
|
160
168
|
signing_key:
|
161
169
|
specification_version: 4
|
162
170
|
summary: Check lookup is not used in parameters
|