puppet-lint-unquoted_string-check 3.0.0 → 4.1.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80bfaa2e06beb1eab0d2c4573b13025d6a95ebebf4fad499f80432cd9b644768
|
4
|
+
data.tar.gz: 700cc406f9df5dfa17bacc6d2112aed54566378ce296b35527572032033dfb0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84ef8d85b8946a67f07c54644a3d41e01442c11266c92998ae49c0b9222531df3fab2300edb38f71ac72e705d0d94a381d202b5ad1520f84ef70b34fd9142e6d
|
7
|
+
data.tar.gz: b39eaf9b2d3b5f2ba50c75a822a534719ec926ba6e0ff8fc4dae326da01832fc91fc1ebb35bc5f4167525f35c5e8661d82df3f2e1efea01b07ca39fde30a91df
|
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
|
+
## [4.1.0](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/tree/4.1.0) (2025-09-25)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/compare/4.0.0...4.1.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- Add `SemVerRange` to `:TYPE in case` test [\#28](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/pull/28) ([kenyon](https://github.com/kenyon))
|
12
|
+
|
13
|
+
## [4.0.0](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/tree/4.0.0) (2025-09-25)
|
14
|
+
|
15
|
+
[Full Changelog](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/compare/3.0.0...4.0.0)
|
16
|
+
|
17
|
+
**Breaking changes:**
|
18
|
+
|
19
|
+
- Require Ruby 3.2+ & puppet-lint 5.1+ [\#31](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/pull/31) ([bastelfreak](https://github.com/bastelfreak))
|
20
|
+
|
5
21
|
## [3.0.0](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/tree/3.0.0) (2023-04-21)
|
6
22
|
|
7
23
|
[Full Changelog](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/compare/2.2.0...3.0.0)
|
@@ -58,6 +58,7 @@ describe 'unquoted_string_in_selector' do
|
|
58
58
|
$listen_socket = $service_bind ? {
|
59
59
|
Undef => undef,
|
60
60
|
Stdlib::IP::Address::V6 => "[${service_bind}]:${service_port}",
|
61
|
+
SemVerRange('>1.0.0') => 'xyz',
|
61
62
|
default => "${service_bind}:${service_port}",
|
62
63
|
}
|
63
64
|
PUPPET
|
data/spec/spec_helper.rb
CHANGED
@@ -1,29 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
begin
|
4
|
-
require 'simplecov'
|
5
|
-
require 'simplecov-console'
|
6
|
-
require 'codecov'
|
7
|
-
rescue LoadError
|
8
|
-
else
|
9
|
-
SimpleCov.start do
|
10
|
-
track_files 'lib/**/*.rb'
|
11
|
-
|
12
|
-
add_filter '/spec'
|
13
|
-
|
14
|
-
enable_coverage :branch
|
15
|
-
|
16
|
-
# do not track vendored files
|
17
|
-
add_filter '/vendor'
|
18
|
-
add_filter '/.vendor'
|
19
|
-
end
|
20
|
-
|
21
|
-
SimpleCov.formatters = [
|
22
|
-
SimpleCov::Formatter::Console,
|
23
|
-
SimpleCov::Formatter::Codecov,
|
24
|
-
]
|
25
|
-
end
|
26
|
-
|
27
3
|
require 'puppet-lint'
|
4
|
+
require 'rspec/collection_matchers'
|
28
5
|
|
29
6
|
PuppetLint::Plugins.load_spec_helper
|
metadata
CHANGED
@@ -1,35 +1,28 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet-lint-unquoted_string-check
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 4.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: puppet-lint
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
16
15
|
requirements:
|
17
|
-
- - "
|
16
|
+
- - "~>"
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: '5'
|
18
|
+
version: '5.1'
|
23
19
|
type: :runtime
|
24
20
|
prerelease: false
|
25
21
|
version_requirements: !ruby/object:Gem::Requirement
|
26
22
|
requirements:
|
27
|
-
- - "
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: '3'
|
30
|
-
- - "<"
|
23
|
+
- - "~>"
|
31
24
|
- !ruby/object:Gem::Version
|
32
|
-
version: '5'
|
25
|
+
version: '5.1'
|
33
26
|
description: " A puppet-lint plugin to check that selectors and case statements
|
34
27
|
cases are quoted.\n"
|
35
28
|
email: voxpupuli@groups.io
|
@@ -48,7 +41,6 @@ homepage: https://github.com/puppet-community/puppet-lint-unquoted_string-check
|
|
48
41
|
licenses:
|
49
42
|
- Apache-2.0
|
50
43
|
metadata: {}
|
51
|
-
post_install_message:
|
52
44
|
rdoc_options: []
|
53
45
|
require_paths:
|
54
46
|
- lib
|
@@ -56,15 +48,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
56
48
|
requirements:
|
57
49
|
- - ">="
|
58
50
|
- !ruby/object:Gem::Version
|
59
|
-
version: '2
|
51
|
+
version: '3.2'
|
60
52
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
53
|
requirements:
|
62
54
|
- - ">="
|
63
55
|
- !ruby/object:Gem::Version
|
64
56
|
version: '0'
|
65
57
|
requirements: []
|
66
|
-
rubygems_version: 3.
|
67
|
-
signing_key:
|
58
|
+
rubygems_version: 3.6.9
|
68
59
|
specification_version: 4
|
69
60
|
summary: A puppet-lint plugin to check that selectors and case statements cases are
|
70
61
|
quoted.
|