chef-config 12.12.15 → 12.13.30
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 +4 -4
- data/chef-config.gemspec +1 -1
- data/lib/chef-config/config.rb +2 -2
- data/lib/chef-config/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8666d726f30ad3ea1b3b60b0de9c9f416fbd5861
|
|
4
|
+
data.tar.gz: afc05e03ebb87d9b2fb6247b1b5138e367945aa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1448d01dd4fbe8ee99111f9cb3989ed98b92a6d69f7705235300892d2e040dc53db6f19613b1774995c0e432a0ea5b13a93ce3133f242922ca184a36304745e7
|
|
7
|
+
data.tar.gz: 8734e730da4687ac12ff450e6018ce3c146457fa5f88e6d1c8797c236c4f6980ba801e74d69bfb7810321babdf6a041543f74762b0f99399b61fcf20406453cd
|
data/chef-config.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
|
|
18
18
|
spec.add_dependency "mixlib-shellout", "~> 2.0"
|
|
19
19
|
spec.add_dependency "mixlib-config", "~> 2.0"
|
|
20
|
-
spec.add_dependency "fuzzyurl"
|
|
20
|
+
spec.add_dependency "fuzzyurl"
|
|
21
21
|
|
|
22
22
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
23
23
|
|
data/lib/chef-config/config.rb
CHANGED
|
@@ -132,8 +132,8 @@ module ChefConfig
|
|
|
132
132
|
until File.directory?(PathHelper.join(path, "cookbooks")) || File.directory?(PathHelper.join(path, "cookbook_artifacts"))
|
|
133
133
|
new_path = File.expand_path("..", path)
|
|
134
134
|
if new_path == path
|
|
135
|
-
ChefConfig.logger.warn("No cookbooks directory found at or above current directory. Assuming #{
|
|
136
|
-
return
|
|
135
|
+
ChefConfig.logger.warn("No cookbooks directory found at or above current directory. Assuming #{cwd}.")
|
|
136
|
+
return cwd
|
|
137
137
|
end
|
|
138
138
|
path = new_path
|
|
139
139
|
end
|
data/lib/chef-config/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-config
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 12.
|
|
4
|
+
version: 12.13.30
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Adam Jacob
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: mixlib-shellout
|
|
@@ -42,16 +42,16 @@ dependencies:
|
|
|
42
42
|
name: fuzzyurl
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- - "
|
|
45
|
+
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0
|
|
47
|
+
version: '0'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- - "
|
|
52
|
+
- - ">="
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0
|
|
54
|
+
version: '0'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: rake
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|