puppet-lint-leading_zero-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: 770ddaca3da9d77ace72a95b1a8f10c24eb833fcdfb5f2e433696158fe2df9a5
|
4
|
+
data.tar.gz: '08273524ad6724c904d873c660f750ff147ab336da068417c4db015fc35f4f57'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 452da0905af74b2bc5b49c29c76289ca8d34b3f433f01b78aa0365212d7f303bdb29b761efca177468ad8560357abb446886fd16d69fd022fc961af1d735c6ff
|
7
|
+
data.tar.gz: 22337bb1e80b44f8c99954214a28f1885d07ff8e8c3cb9a860ec7ae4fbac5fe4c9d3d92a20c5dd5bae570eafccb68aed8f456858b7913538e33c082b922f5231
|
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-leading_zero-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 puppet-lint plugin to check for unquoted numbers with leading
|
34
27
|
zero.\n"
|
35
28
|
email: voxpupuli@groups.io
|
@@ -46,7 +39,6 @@ homepage: https://github.com/voxpupuli/puppet-lint-leading_zero-check
|
|
46
39
|
licenses:
|
47
40
|
- Apache-2.0
|
48
41
|
metadata: {}
|
49
|
-
post_install_message:
|
50
42
|
rdoc_options: []
|
51
43
|
require_paths:
|
52
44
|
- lib
|
@@ -54,15 +46,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
54
46
|
requirements:
|
55
47
|
- - ">="
|
56
48
|
- !ruby/object:Gem::Version
|
57
|
-
version: 2
|
49
|
+
version: '3.2'
|
58
50
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
51
|
requirements:
|
60
52
|
- - ">="
|
61
53
|
- !ruby/object:Gem::Version
|
62
54
|
version: '0'
|
63
55
|
requirements: []
|
64
|
-
rubygems_version: 3.
|
65
|
-
signing_key:
|
56
|
+
rubygems_version: 3.6.9
|
66
57
|
specification_version: 4
|
67
58
|
summary: A puppet-lint plugin to check for unquoted numbers with leading zero.
|
68
59
|
test_files: []
|