nixenvironment 0.0.110 → 0.0.111
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/archiver.rb +4 -4
- 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: 06e4a352ac3c330bfa3b5eece4a78231e0fc75d4
|
|
4
|
+
data.tar.gz: f7e5d6309572bf081c6dabc590a9bceae571833f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a808c49b097b5bcd8d7b28af6a023b4f9e06ba6b70cb219f45a9a07b7bef36d0c41617829af11fcc830fccba3dff490b8edb9d80390099cfe09915f54f59923
|
|
7
|
+
data.tar.gz: d4023993561d619608d40ed8538b37ce9a20a109ed6103993dc2491801beb3daf24d43fd7970573a2bd08e75f18a1c51aa748031dd24d17de162acc2e1603680
|
|
@@ -173,7 +173,7 @@ module Nixenvironment
|
|
|
173
173
|
|
|
174
174
|
profile_info, identity_name = find_profile_info_and_identity_name(profile_type, new_bundle_id)
|
|
175
175
|
|
|
176
|
-
puts "==> Sign with profile '".bold + profile_info.name.
|
|
176
|
+
puts "==> Sign with profile '".bold + profile_info.name.underline + "', identity '" + identity_name.underline + "' ...".bold
|
|
177
177
|
|
|
178
178
|
watchkit_app_profile_info = nil
|
|
179
179
|
watchkit_app_identity_name = nil
|
|
@@ -184,17 +184,17 @@ module Nixenvironment
|
|
|
184
184
|
|
|
185
185
|
if watchkit_app_relative_product_path.present?
|
|
186
186
|
watchkit_app_profile_info, watchkit_app_identity_name = find_profile_info_and_identity_name(profile_type, new_watchkit_app_bundle_id)
|
|
187
|
-
puts "==> Sign watchkit_app with profile '".bold + watchkit_app_profile_info.name.
|
|
187
|
+
puts "==> Sign watchkit_app with profile '".bold + watchkit_app_profile_info.name.underline + "', identity '".bold + watchkit_app_identity_name.underline + "' ...".bold
|
|
188
188
|
end
|
|
189
189
|
|
|
190
190
|
if watchkit_extension_relative_product_path.present?
|
|
191
191
|
watchkit_extension_profile_info, watchkit_extension_identity_name = find_profile_info_and_identity_name(profile_type, new_watchkit_extension_bundle_id)
|
|
192
|
-
puts "==> Sign watchkit_extension with profile '".bold + watchkit_extension_profile_info.name.
|
|
192
|
+
puts "==> Sign watchkit_extension with profile '".bold + watchkit_extension_profile_info.name.underline + "', identity '".bold + watchkit_extension_identity_name.underline + "' ...".bold
|
|
193
193
|
end
|
|
194
194
|
|
|
195
195
|
if widget_relative_product_path.present?
|
|
196
196
|
widget_profile_info, widget_identity_name = find_profile_info_and_identity_name(profile_type, new_widget_bundle_id)
|
|
197
|
-
puts "==> Sign widget with profile '".bold + widget_profile_info.name.
|
|
197
|
+
puts "==> Sign widget with profile '".bold + widget_profile_info.name.underline + "', identity '".bold + widget_identity_name.underline + "' ...".bold
|
|
198
198
|
end
|
|
199
199
|
|
|
200
200
|
watchkit_app_profile_path = watchkit_app_profile_info ? watchkit_app_profile_info.path : nil
|