nixenvironment 0.0.93 → 0.0.94
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/lib/nixenvironment/deployer.rb +3 -3
- data/lib/nixenvironment/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: af4832a0bde29530a99127654109859bff0af7d3
|
|
4
|
+
data.tar.gz: 45cd85aeab6774da81e7883a81bc67e92c6be910
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7f047f969c30f1fad3f45e41e85895edb1dd86890a66ec9e3cba302563efa4e7dc4bfea63d57344ea6470677b17fe98ca742612595134e1e45bf8db03f0e7a72
|
|
7
|
+
data.tar.gz: fdda60c3942bb241bda4b4f3fc72f2d9191650877d7c6c0ed53b803b3c17b977b9cdf719e1ee58bb444466e389c975062a16bc01c7380f9aee53662b26b9cef2
|
|
@@ -70,14 +70,14 @@ module Nixenvironment
|
|
|
70
70
|
|
|
71
71
|
if ipa_product.present? && File.exist?(ipa_product)
|
|
72
72
|
ipa_count += 1
|
|
73
|
-
deploy_internal(deploy_host, deploy_dir, deploy_user, deploy_password, nil, nil,
|
|
73
|
+
deploy_internal(deploy_host, deploy_dir, deploy_user, deploy_password, nil, nil, nil,
|
|
74
74
|
ipa_bundle_id, ipa_product, current_app_version, current_build_version, name_for_deployment, executable_name, app_dsym, sdk)
|
|
75
75
|
end
|
|
76
76
|
|
|
77
77
|
if ipa_product_resigned_device.present? && File.exist?(ipa_product_resigned_device)
|
|
78
78
|
ipa_count += 1
|
|
79
79
|
ipa_bundle_id_resigned_device = ipa_bundle_id if ipa_bundle_id_resigned_device.blank?
|
|
80
|
-
deploy_internal(deploy_host, deploy_dir, deploy_user, deploy_password, nil, nil,
|
|
80
|
+
deploy_internal(deploy_host, deploy_dir, deploy_user, deploy_password, nil, nil, nil,
|
|
81
81
|
ipa_bundle_id_resigned_device, ipa_product_resigned_device, current_app_version, current_build_version, name_for_deployment_resigned_device,
|
|
82
82
|
executable_name, app_dsym, sdk)
|
|
83
83
|
end
|
|
@@ -85,7 +85,7 @@ module Nixenvironment
|
|
|
85
85
|
if ipa_product_resigned_adhoc.present? && File.exist?(ipa_product_resigned_adhoc)
|
|
86
86
|
ipa_count += 1
|
|
87
87
|
ipa_bundle_id_resigned_adhoc = ipa_bundle_id if ipa_bundle_id_resigned_adhoc.blank?
|
|
88
|
-
deploy_internal(deploy_host, deploy_dir, deploy_user, deploy_password, nil, nil,
|
|
88
|
+
deploy_internal(deploy_host, deploy_dir, deploy_user, deploy_password, nil, nil, nil,
|
|
89
89
|
ipa_bundle_id_resigned_adhoc, ipa_product_resigned_adhoc, current_app_version, current_build_version, name_for_deployment_resigned_adhoc,
|
|
90
90
|
executable_name, app_dsym, sdk)
|
|
91
91
|
end
|