puppetfile-updater 0.3.2 → 0.3.3
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 +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
ODlmMWM3ZTYxYWIwMjRkZDJhMGIxYzNjMzM0M2U3ODNmNjgxNDdiMQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NzcwZmJjOGM1YjM0YTgzODU3MjI0NzcxODA5ZjQ2ZmI1ZDMxZGU2NQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
NGU1ZGRkN2Y3NWJmYzIyMzQ3YWFmZDY3MWZmYTA2MDlhYTBlOGY2YTM4YzAy
|
|
10
|
+
YjM2NTZlZmMzODIzNjI1NmI0ZTIxNmU1YmU3MDA1YjU0OThhNTM0OTM2NGI4
|
|
11
|
+
NjcyYzk5ZjZjMDhmMDBmODM0NWMwMGQ1OGE5NDBiNWRlY2M5ZTk=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZjFhYjhhYzZjNTA4YzQ0YWMzNzViZmJjMjdhZmYyMmM4MDY3YmQ2OTkzZjVk
|
|
14
|
+
ZGQ3MTMyZThiNTljMzNjMGMzZmM2NmY5NmVhOGU5NTM2MDM3ZWUzN2ZjOGIz
|
|
15
|
+
Y2NkZmY3OWM0MWY0NWMxOGZkOTAyMGVmZWY4ZTliNDZmNWFlOGE=
|
|
@@ -26,6 +26,10 @@ module Puppetfile =
|
|
|
26
26
|
a comma, optionally preceded or followed by spaces or newlines *)
|
|
27
27
|
let comma = del /[ \t\n]*,[ \t\n]*/ ", "
|
|
28
28
|
|
|
29
|
+
(* View: moduledir
|
|
30
|
+
The moduledir setting specifies where modules from the Puppetfile will be installed *)
|
|
31
|
+
let moduledir = [ Util.indent . key "moduledir" . Sep.space . Quote.any . Util.eol ]
|
|
32
|
+
|
|
29
33
|
(* View: forge
|
|
30
34
|
a forge entry *)
|
|
31
35
|
let forge = [ Util.indent . key "forge" . Sep.space . Quote.any . Util.eol ]
|
|
@@ -49,4 +53,4 @@ let mod =
|
|
|
49
53
|
|
|
50
54
|
(* View: lns
|
|
51
55
|
the Puppetfile lens *)
|
|
52
|
-
let lns = (Util.empty | Util.comment | forge | metadata | mod)*
|
|
56
|
+
let lns = (Util.empty | Util.comment | forge | metadata | mod | moduledir )*
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puppetfile-updater
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Camptocamp
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-04-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|