shipit-engine 0.43.3 → 0.43.4
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7812fd5a848ac639a91c1d460deb46036e486d5b867c8944b22694fa36d11b80
|
|
4
|
+
data.tar.gz: e41e95e8c766fd7e20461d21d5463fd37ab8cc2e9cfa2e6c38958e68bc48da32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba03564e83d57ff223597c80c14eb99b62ef8831cc3396f55a9def306905e996314699fed00f1a5ea04b1841535d980ff1fb87d9fc8fb05d8849e04e9414e0ee
|
|
7
|
+
data.tar.gz: 17a7dbaffb9443dcf3b7e341af447f954c7e3fa2c931a4701d70a1747a4b815b0e7e7566d5e9686848887669cf3939b1ce05c560eb5dddc0487eebbafd80d652
|
data/lib/shipit/version.rb
CHANGED
|
@@ -71,7 +71,7 @@ module Shipit
|
|
|
71
71
|
--retry 2
|
|
72
72
|
).gsub(/\s+/, ' ').strip
|
|
73
73
|
config_command = "bundle config set --local path #{@spec.bundle_path}"
|
|
74
|
-
without_command = "bundle config set without 'default:production:development:test:staging:benchmark:debug'"
|
|
74
|
+
without_command = "bundle config set --local without 'default:production:development:test:staging:benchmark:debug'"
|
|
75
75
|
|
|
76
76
|
assert_equal command, @spec.bundle_install.last
|
|
77
77
|
assert @spec.bundle_install.include?(config_command)
|
|
@@ -87,7 +87,7 @@ module Shipit
|
|
|
87
87
|
--retry 2
|
|
88
88
|
).gsub(/\s+/, ' ').strip
|
|
89
89
|
assert_equal command, @spec.bundle_install.last
|
|
90
|
-
without_command = "bundle config set without 'some:custom:groups'"
|
|
90
|
+
without_command = "bundle config set --local without 'some:custom:groups'"
|
|
91
91
|
assert @spec.bundle_install.include?(without_command)
|
|
92
92
|
end
|
|
93
93
|
|