puppet-lint-param_comment-check 0.1.0 → 0.1.1
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4b8ad42633483b29d912da99b108a9bcd277b7c6b1d21ebaeeedb4aa9634e12
|
4
|
+
data.tar.gz: 768790358859c7375df58da9fbbd2b932a94f606647d9f13e513fc119cbd29e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eee0e509c76c55d1cc9b97ed444bdadbf1caa8a970e03e339618083d1e5019f0a18e70d627b4f691f1aa255a78a8240972db6a68d38b2a41c9f9993f3a3714e4
|
7
|
+
data.tar.gz: 6af8ad1b81d6d0b9f2e4d8cbf9cee33507e6813f025691187edab23adc9f0510372e4cd88362f614066904c32243bc3bc0a550fddfe238f9e5c250bfc897f592
|
@@ -11,6 +11,9 @@ class ParamWorkflow < FiniteMachine::Definition
|
|
11
11
|
event :got_description, from: :awaiting_description, to: :awaiting_separator
|
12
12
|
event :got_separator, from: :awaiting_separator, to: :awaiting_header
|
13
13
|
|
14
|
+
# for multi-line descriptions
|
15
|
+
event :got_description, from: :awaiting_separator, to: :awaiting_separator
|
16
|
+
|
14
17
|
# handling options
|
15
18
|
event :got_option_header, from: :awaiting_separator, to: :awaiting_option_description
|
16
19
|
event :got_option_description, from: :awaiting_option_description, to: :awaiting_separator
|
@@ -11,6 +11,7 @@ describe 'param_comment' do
|
|
11
11
|
#
|
12
12
|
# @param mandatory
|
13
13
|
# A mandatory parameter
|
14
|
+
# with two lines
|
14
15
|
#
|
15
16
|
# @param withdefault
|
16
17
|
# A parameter with a default value
|
@@ -23,7 +24,7 @@ describe 'param_comment' do
|
|
23
24
|
class my_class (
|
24
25
|
String $mandatory,
|
25
26
|
Boolean $withdefault = false,
|
26
|
-
Optional[String] $optional = undef
|
27
|
+
Optional[String] $optional = undef
|
27
28
|
) {}
|
28
29
|
CODE
|
29
30
|
end
|
@@ -170,6 +171,9 @@ describe 'param_comment' do
|
|
170
171
|
# A mandatory parameter
|
171
172
|
# @option mandatory [Boolean] :some_option
|
172
173
|
# An option
|
174
|
+
# @option mandatory [String] :some_other_option
|
175
|
+
# Another option
|
176
|
+
# with multiple lines of description
|
173
177
|
class my_class (
|
174
178
|
Hash $mandatory,
|
175
179
|
) {}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet-lint-param_comment-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
|
- Dennis Ploeger
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: puppet-lint
|