chefdk-julia 0.4.1 → 0.4.2
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/CHANGELOG.md +4 -0
- data/lib/chefdk/julia/version.rb +1 -1
- data/metadata.rb +7 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YzlmNDRjMTFjNmYyZTlhY2U5MzAyMGY5ODNlZGY2YTk0MjljNDY1NA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YTRjMDBhYzQ2NWZmZDRkMWVjMzI2Mzg5NGQ3YWIzMTMxYzEwY2Q1Zg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZGRhNzc2Njg3NWI3MTIzZWMzMjVlZWMxNjViMWZmOTM5ZmU0MjJjZDQ1N2Vi
|
|
10
|
+
NDFlMzZmYzc2NGE3NTFlMGNhZmMxODdiMDA2YzEyM2NkMWIzZTFhMjYzMTU5
|
|
11
|
+
NGNkNmM5NzFmYzk3NGJhZTgxOWFhNmEwZjdhZDljNGQ4ODQzMTI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
Y2NmOWUxNzRjZTdhZTQzNTU2ZWI1MjAyY2VkMWU1NzA0OWYwZWZjYjExMzRl
|
|
14
|
+
MjAyMThiZDk3OWI5NTkzYzc0ZjY5NGE5OTE4ZGExNzU1NWM1N2VmMDU4NTU4
|
|
15
|
+
YjE4ZDE4NzcxNzM4YzgyZjhmOWRlZDcwYzJkZGVlNTViYTRhNDY=
|
data/CHANGELOG.md
CHANGED
data/lib/chefdk/julia/version.rb
CHANGED
data/metadata.rb
CHANGED
|
@@ -17,7 +17,13 @@ require_relative 'lib/chefdk/julia/version'
|
|
|
17
17
|
# ChefDK requires this metadata file to be able to load Julia as a cookbook, even
|
|
18
18
|
# though Julia isn't a traditional cookbook that gets uploaded to Chef Server
|
|
19
19
|
# and run by nodes.
|
|
20
|
-
|
|
20
|
+
|
|
21
|
+
# We need to get the basename of the chefdk-julia dir in gems/, e.g. chefdk-julia-0.4.2,
|
|
22
|
+
# to make chef generate cookbook work. Otherwise we get this error:
|
|
23
|
+
# ERROR: Could not find cookbook(s) to satisfy run list ["recipe[chefdk-julia-0.4.2::cookbook]"
|
|
24
|
+
# See https://github.com/chef/chef-dk/issues/633
|
|
25
|
+
name File.basename(File.dirname(__FILE__))
|
|
26
|
+
|
|
21
27
|
description 'An Opinionated Cookbook Creator'
|
|
22
28
|
long_description 'An Opinionated Cookbook Creator, with spunk and a grin, by Nordstrom'
|
|
23
29
|
|