puppet-lint-no_erb_template-check 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -1
- metadata +15 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 051f9779ff89fc7f3e29a070c1dc1d017b51021c
|
4
|
+
data.tar.gz: 46adb3a3d101a9b720a8e59639cbd2f9af15d0e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ffebe538fd19b2e069b7fb32e36ab1d5a57014be5cbb97bdaa130a1a50aa28b235e610f12aa4f32527a86b7071fcc1c817246d2dfa7e594c969c269c0e3397c
|
7
|
+
data.tar.gz: acc8e28c6404055afd0b54a520943d0c3b79b92a8e76b4c16d80447623b64cbd37a4cf4edea40331b48d2c3c0c9d278adcb25e2fb7ff5368343f2857ac1f3e3b
|
data/README.md
CHANGED
@@ -28,7 +28,12 @@ This plugin provides two new checks to `puppet-lint`.
|
|
28
28
|
|
29
29
|
'template() function call. Use epp() instead'
|
30
30
|
|
31
|
-
|
31
|
+
## Other puppet-lint plugins
|
32
|
+
|
33
|
+
You can find a list of my `puppet-lint` plugins in the
|
34
|
+
[unixdaemon puppet-lint-plugins](https://github.com/deanwilson/unixdaemon-puppet-lint-plugins) repo.
|
35
|
+
|
36
|
+
### Author
|
32
37
|
|
33
38
|
[Dean Wilson](http://www.unixdaemon.net)
|
34
39
|
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet-lint-no_erb_template-check
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dean Wilson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: puppet-lint
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '1.1'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '3.0'
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: '1.1'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3.0'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: rspec
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -98,16 +104,16 @@ dependencies:
|
|
98
104
|
name: rubocop
|
99
105
|
requirement: !ruby/object:Gem::Requirement
|
100
106
|
requirements:
|
101
|
-
- - "
|
107
|
+
- - "~>"
|
102
108
|
- !ruby/object:Gem::Version
|
103
|
-
version:
|
109
|
+
version: 0.36.0
|
104
110
|
type: :development
|
105
111
|
prerelease: false
|
106
112
|
version_requirements: !ruby/object:Gem::Requirement
|
107
113
|
requirements:
|
108
|
-
- - "
|
114
|
+
- - "~>"
|
109
115
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
116
|
+
version: 0.36.0
|
111
117
|
description: |2
|
112
118
|
Extends puppet-lint to ensure there are no calls to the template
|
113
119
|
or inline_template function as an aid to migrating to epp templates.
|
@@ -148,3 +154,4 @@ summary: puppet-lint no_erb_template check
|
|
148
154
|
test_files:
|
149
155
|
- spec/spec_helper.rb
|
150
156
|
- spec/puppet-lint/plugins/no_erb_template_spec.rb
|
157
|
+
has_rdoc:
|