chef-config 17.0.242 → 17.1.35
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/chef-config/config.rb +2 -2
- data/lib/chef-config/path_helper.rb +1 -1
- data/lib/chef-config/version.rb +1 -1
- data/spec/unit/path_helper_spec.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f694bbda24ebf4eab27163a9d730b2b45ba7082e71ad9bffd70f0f146a9d5cb6
|
4
|
+
data.tar.gz: f844d4d5927aa01a05b0604e081e959f1f5d863a11190b0dab61cce94ac2ab39
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 406ca654e45344828425e7651f6bf473664ac404459dbb469169ad637aa7f3ad40bf29e29a1075fa5e465b82cde6a9c1d8dbd57bed207e9267787f465e6d1902
|
7
|
+
data.tar.gz: 8ae6334114565f1b8dbf443f762d61672092c21c60d931a2148fddc58a45349bf3cd22a93a86cbcb55198866ac512cbd61db5fd39fbbe8fc06e00243e4bf4b14
|
data/lib/chef-config/config.rb
CHANGED
@@ -71,8 +71,8 @@ module ChefConfig
|
|
71
71
|
# Some installations will be on different drives so use the drive that
|
72
72
|
# the expanded path to __FILE__ is found.
|
73
73
|
drive = windows_installation_drive
|
74
|
-
if drive && path[0] ==
|
75
|
-
path = PathHelper.join(drive, path.split(
|
74
|
+
if drive && path[0] == "\\" && path.split("\\")[2] == "chef"
|
75
|
+
path = PathHelper.join(drive, path.split("\\", 3)[2])
|
76
76
|
end
|
77
77
|
end
|
78
78
|
path
|
data/lib/chef-config/version.rb
CHANGED
@@ -56,7 +56,7 @@ RSpec.describe ChefConfig::PathHelper do
|
|
56
56
|
context "forcing windows/non-windows" do
|
57
57
|
context "forcing windows" do
|
58
58
|
it "path_separator is \\" do
|
59
|
-
expect(path_helper.path_separator(windows: true)).to eq(
|
59
|
+
expect(path_helper.path_separator(windows: true)).to eq("\\")
|
60
60
|
end
|
61
61
|
|
62
62
|
context "platform-specific #join behavior" do
|
@@ -133,7 +133,7 @@ RSpec.describe ChefConfig::PathHelper do
|
|
133
133
|
end
|
134
134
|
|
135
135
|
it "path_separator is \\" do
|
136
|
-
expect(path_helper.path_separator).to eq(
|
136
|
+
expect(path_helper.path_separator).to eq("\\")
|
137
137
|
end
|
138
138
|
|
139
139
|
context "platform-specific #join behavior" do
|
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: 17.
|
4
|
+
version: 17.1.35
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Jacob
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: chef-utils
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 17.
|
19
|
+
version: 17.1.35
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 17.
|
26
|
+
version: 17.1.35
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: mixlib-shellout
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|