puppet-lint-anchor-check 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/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: fc69578b806ca930378e1fe8c4cb1865c918c3f282e9640f850c0a24eb07fab3
|
4
|
+
data.tar.gz: 9021572fd4c0defef473105a68f5fcd3f285326200c6554488a3400beba1c4fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c32530dcd97c35a80e989da7fc4f971b11e652f3cc26e0365514f8b2ecd8d6ed80c179af50eeaa3aa1d85ad85ce24e8d8e341b7194dddc1fe04d154d8550ae4
|
7
|
+
data.tar.gz: 4190c7c6f1f51162d9801e3efc04a0ef73b59e237f39477e34b44ecb9d026ad4fc97b103b80f5fbd5e53c6fb4f85e556a393b28f79385960041949310786fe0a
|
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-anchor-check
|
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: " A check for puppet-lint that validates no anchor resources are used\n"
|
34
27
|
email: voxpupuli@groups.io
|
35
28
|
executables: []
|
@@ -45,7 +38,6 @@ homepage: https://github.com/voxpupuli/puppet-lint-anchor-check
|
|
45
38
|
licenses:
|
46
39
|
- Apache-2.0
|
47
40
|
metadata: {}
|
48
|
-
post_install_message:
|
49
41
|
rdoc_options: []
|
50
42
|
require_paths:
|
51
43
|
- lib
|
@@ -53,15 +45,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
53
45
|
requirements:
|
54
46
|
- - ">="
|
55
47
|
- !ruby/object:Gem::Version
|
56
|
-
version: 2
|
48
|
+
version: '3.2'
|
57
49
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
50
|
requirements:
|
59
51
|
- - ">="
|
60
52
|
- !ruby/object:Gem::Version
|
61
53
|
version: '0'
|
62
54
|
requirements: []
|
63
|
-
rubygems_version: 3.
|
64
|
-
signing_key:
|
55
|
+
rubygems_version: 3.6.9
|
65
56
|
specification_version: 4
|
66
57
|
summary: puppet-lint check to validate legacy anchor pattern is not used
|
67
58
|
test_files: []
|