puppetfile-updater 0.3.0 → 0.3.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 +8 -8
- data/augeas/lenses/puppetfile.aug +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NGFlNjM1ZTI1ZTgzN2JhNmFlZjc1Y2VlMWQxOTYxMzVkOWYyMmNiOA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OGU1NGQwZDY3MmFhOTllNGUzNzMxOTY0OWQyNTFlMTFlNDY5Y2M1ZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTAxYTliOWQxZjA5NzVmN2VhNGUyZmJiNjRhMzk4OTE1OTZiZmM0ZTJhYjlk
|
10
|
+
NTk2MzVjZmFmM2NhMjA5NTcwNDQwOWJlYjI4OTdmY2I1ODAxNDQ0YzI0Y2Zj
|
11
|
+
ZmFjMDY3MmQzMTBjMmI2NmU0MTkxMzI1YjVkNzNhMGM1NDc0NjY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OGU3NTM0M2I0Njg0OGI1ODZjODA0MGQwMWMyMDI3YTUwYTM3MWY4NGM5NDkw
|
14
|
+
MzAxYjM5ZmYwMGI2NzBiNTNiMWRlZDljYzk1ZDE0ZjNjODE0Zjk4MDg4ZmZi
|
15
|
+
MTEwZmI5ZjBhOTlkZTVjZjVlNjRkYzAxODVmMjk5MjQ1Y2M4MmY=
|
@@ -37,7 +37,7 @@ let metadata = [ Util.indent . key "metadata" . Util.eol ]
|
|
37
37
|
(* View: mod
|
38
38
|
a module entry, with optional version and options *)
|
39
39
|
let mod =
|
40
|
-
let mod_name = Quote.do_quote (store (Rx.word . /[\/-]/ . Rx.word))
|
40
|
+
let mod_name = Quote.do_quote (store ((Rx.word . /[\/-]/)? . Rx.word))
|
41
41
|
in let version = [ label "@version" . Quote.do_quote (store /[^:\n]+/) ]
|
42
42
|
in let opt = [ Util.del_str ":" . key Rx.word . del /[ \t]*=>[ \t]*/ " => "
|
43
43
|
. Quote.do_quote (store /[^,\n]*/) ]
|