puppet-lint-resource_reference_syntax 2.0.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/CHANGELOG.md +8 -0
- data/spec/spec_helper.rb +1 -24
- metadata +8 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b9dee979a332ef6a5d21c69529d183a048dab7d4b6e30d1fb10b818d3bd911a7
|
4
|
+
data.tar.gz: aff40910354041779ac99f50daec777df01985a0ceced54fa2f63ab0a693fce7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f50761d399ca9160ca99118743e17fca12acd2621af20a457f5216ee31d7d75d3cc8ba8813b8e0de49830d060afd1e67b189a5f599fd226b744b36c16555254e
|
7
|
+
data.tar.gz: 69d740bf9c0e5d26dda966895523b1ec00e49640968e8abec60f79cdc90ca03023c0281efd0093afd031b51f1a3dd28a5c9b81f94cf6fa06f5ca06a3dd5d5ffd
|
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
|
+
## [3.0.0](https://github.com/voxpupuli/puppet-lint-resource_reference_syntax/tree/3.0.0) (2025-09-25)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/puppet-lint-resource_reference_syntax/compare/2.0.0...3.0.0)
|
8
|
+
|
9
|
+
**Breaking changes:**
|
10
|
+
|
11
|
+
- Require Ruby 3.2+ & puppet-lint 5.1+ [\#34](https://github.com/voxpupuli/puppet-lint-resource_reference_syntax/pull/34) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
|
5
13
|
## [2.0.0](https://github.com/voxpupuli/puppet-lint-resource_reference_syntax/tree/2.0.0) (2023-04-21)
|
6
14
|
|
7
15
|
[Full Changelog](https://github.com/voxpupuli/puppet-lint-resource_reference_syntax/compare/1.2.0...2.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-resource_reference_syntax
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.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:
|
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: " Extends puppet-lint to ensure that the reference syntax follows
|
34
27
|
Puppet 4 style\n"
|
35
28
|
email: voxpupuli@groups.io
|
@@ -54,7 +47,6 @@ homepage: https://github.com/voxpupuli/puppet-lint-resource_reference_syntax
|
|
54
47
|
licenses:
|
55
48
|
- Apache-2.0
|
56
49
|
metadata: {}
|
57
|
-
post_install_message:
|
58
50
|
rdoc_options: []
|
59
51
|
require_paths:
|
60
52
|
- lib
|
@@ -62,15 +54,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
54
|
requirements:
|
63
55
|
- - ">="
|
64
56
|
- !ruby/object:Gem::Version
|
65
|
-
version: 2
|
57
|
+
version: '3.2'
|
66
58
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
59
|
requirements:
|
68
60
|
- - ">="
|
69
61
|
- !ruby/object:Gem::Version
|
70
62
|
version: '0'
|
71
63
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
73
|
-
signing_key:
|
64
|
+
rubygems_version: 3.6.9
|
74
65
|
specification_version: 4
|
75
66
|
summary: puppet-lint reference_syntax check
|
76
67
|
test_files: []
|