puppet-lint-unquoted_string-check 3.0.0 → 4.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/spec/spec_helper.rb +1 -24
  4. metadata +8 -17
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 000ae666e4ca3430beceda4c9e6d473b8ac15b009c458f4f26a23657a556d306
4
- data.tar.gz: 44ff25f4da80736c8935e7c7ab0ed8fdedb4300c3734f5350ebdd2a2d88aee3a
3
+ metadata.gz: 6de7242b30fb58458758423cfc9ce0f551353908db26985be0a9e7fa6719f031
4
+ data.tar.gz: 9595e4afeb664986ea5bc086dfcc2d783fc66b449786807ea44ce9c8393cfd0e
5
5
  SHA512:
6
- metadata.gz: 91cb476de59a0564179f741712b7b5b35c5f19a14833ae73ef0541476224c6676d125d640769f18ce67e6a5a8da51ae13b3dd8f9b04130992239fc866a1afeb4
7
- data.tar.gz: 1d1c2e3c1fbdee5217c7e8ebff5b9f679656fcb8203cfcd9f049260e10ab875b2e3cc760a4df6983831b9d03815a29e49d31d6810b5829c33525fbe9eb3291d7
6
+ metadata.gz: ed3ef64c7ba18ee429b29bc78a325a3913df5d1b492ba87908b411a2a1d5d5d0101c80e445e2acdb3c74e7f1a6b55a4dae5a55b31e0755ba68d741b7a10ab34e
7
+ data.tar.gz: 201a193756c171fc922dce4e8d7b8d3fa11e50b0867ff6703541f7f65358a4549009e419405f60447f0822be9df7925b98296a359ec8647d18256db731cceb6a
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
+ ## [4.0.0](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/tree/4.0.0) (2025-09-25)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/compare/3.0.0...4.0.0)
8
+
9
+ **Breaking changes:**
10
+
11
+ - 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))
12
+
5
13
  ## [3.0.0](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/tree/3.0.0) (2023-04-21)
6
14
 
7
15
  [Full Changelog](https://github.com/voxpupuli/puppet-lint-unquoted_string-check/compare/2.2.0...3.0.0)
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: 3.0.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-04-21 00:00:00.000000000 Z
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: '3'
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.7'
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.2.33
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.