puppet-lint-unquoted_string-check 0.2.3 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +13 -5
- data/README.md +5 -0
- data/spec/spec_helper.rb +3 -0
- metadata +34 -18
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
NTdiYzg1ZjNkZjlhYTIwMTM3MDIzZGEwZTQyOWQ2MWQ5MjhhZDc1NQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ODRkMThkZTEzMzNlZTQwZmUzYzMxMTkwYTc5YzNiZDIwMTcyY2Q1Zg==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ZjFmOTRiMmU3YzU0ZTc1ZjViMWYxZWM2OGMxZThjZjEwYWFkYzNhNTIzZTMx
|
10
|
+
MjNhMDE4YTNkY2E1MGRhMmFkYzcwZjRlNjAyMjVmNTJhY2Y0ODhhY2E3NGVm
|
11
|
+
N2RiMzk5ZThiOTQyOTg2NWQ4ODhkMTc4NDBjNGJlNDcxODg2NWE=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NTcwZTU5NTI4OGQ4YjQ4YWI0YzcyOWJjOWU3MWJiYmNmOTZmZDU5ODkyNDZh
|
14
|
+
NjM5Mzk3MWUwYjJiMjdmOGE1OTgzMGMyNmZkMjFmMDU5OTEyMjg4ZDU1NmRk
|
15
|
+
NDdlZDMyMTlhYjAwYjgzMDc0NmFmYzQ4Yzk2MDIxOTg1YTQ3NTc=
|
data/README.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
puppet-lint-unquoted_string-check
|
2
2
|
=================================
|
3
3
|
|
4
|
+
[![Build Status](https://travis-ci.org/camptocamp/puppet-lint-unquoted_string-check.svg)](https://travis-ci.org/camptocamp/puppet-lint-unquoted_string-check)
|
5
|
+
[![Code Climate](https://codeclimate.com/github/camptocamp/puppet-lint-unquoted_string-check/badges/gpa.svg)](https://codeclimate.com/github/camptocamp/puppet-lint-unquoted_string-check)
|
6
|
+
[![Gem Version](https://badge.fury.io/rb/puppet-lint-unquoted_string-check.svg)](http://badge.fury.io/rb/puppet-lint-unquoted_string-check)
|
7
|
+
[![Coverage Status](https://img.shields.io/coveralls/camptocamp/puppet-lint-unquoted_string-check.svg)](https://coveralls.io/r/camptocamp/puppet-lint-unquoted_string-check?branch=master)
|
8
|
+
|
4
9
|
A puppet-lint plugin to check that selectors and case statements cases are quoted.
|
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet-lint-unquoted_string-check
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Camptocamp
|
@@ -14,74 +14,90 @@ dependencies:
|
|
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.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '1.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rspec
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ~>
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '3.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ~>
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '3.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec-its
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ~>
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '1.0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '1.0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rspec-collection_matchers
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '1.0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ~>
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '1.0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: coveralls
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.7'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ~>
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.7'
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: rake
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
72
86
|
requirements:
|
73
|
-
- -
|
87
|
+
- - ! '>='
|
74
88
|
- !ruby/object:Gem::Version
|
75
89
|
version: '0'
|
76
90
|
type: :development
|
77
91
|
prerelease: false
|
78
92
|
version_requirements: !ruby/object:Gem::Requirement
|
79
93
|
requirements:
|
80
|
-
- -
|
94
|
+
- - ! '>='
|
81
95
|
- !ruby/object:Gem::Version
|
82
96
|
version: '0'
|
83
|
-
description:
|
84
|
-
|
97
|
+
description: ! ' A puppet-lint plugin to check that selectors and case statements
|
98
|
+
cases are quoted.
|
99
|
+
|
100
|
+
'
|
85
101
|
email: mickael.canevet@camptocamp.com
|
86
102
|
executables: []
|
87
103
|
extensions: []
|
@@ -103,22 +119,22 @@ require_paths:
|
|
103
119
|
- lib
|
104
120
|
required_ruby_version: !ruby/object:Gem::Requirement
|
105
121
|
requirements:
|
106
|
-
- -
|
122
|
+
- - ! '>='
|
107
123
|
- !ruby/object:Gem::Version
|
108
124
|
version: '0'
|
109
125
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
126
|
requirements:
|
111
|
-
- -
|
127
|
+
- - ! '>='
|
112
128
|
- !ruby/object:Gem::Version
|
113
129
|
version: '0'
|
114
130
|
requirements: []
|
115
131
|
rubyforge_project:
|
116
|
-
rubygems_version: 2.
|
132
|
+
rubygems_version: 2.4.5
|
117
133
|
signing_key:
|
118
134
|
specification_version: 4
|
119
135
|
summary: A puppet-lint plugin to check that selectors and case statements cases are
|
120
136
|
quoted.
|
121
137
|
test_files:
|
122
|
-
- spec/spec_helper.rb
|
123
|
-
- spec/puppet-lint/plugins/check_unquoted_string_in_case/check_unquoted_string_in_selector_spec.rb
|
124
138
|
- spec/puppet-lint/plugins/check_unquoted_string_in_case/check_unquoted_string_in_case_spec.rb
|
139
|
+
- spec/puppet-lint/plugins/check_unquoted_string_in_case/check_unquoted_string_in_selector_spec.rb
|
140
|
+
- spec/spec_helper.rb
|