nixenvironment 0.0.62 → 0.0.63
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 +9 -4
- data/lib/nixenvironment/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b1878d13adda48f1fa903a91f3adf3e69264ebdb
|
|
4
|
+
data.tar.gz: edfc40c98a4b0eb93d76523849b48a676ca3193b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d6637ddda4fd93313ccf69a129137e90443bb5ca65b247c828d73aa878eb8f5a840b34e8b495e1c5ca10015a63c90495465d2ef915854f77c1b8cc99d6eb86e2
|
|
7
|
+
data.tar.gz: 33ba16d742358d2c2adf8cac263631e86c542285541de1b3a1f7ded949ca6db7b76e9b3e72222b696ea5a0a0f1bae72272d40bb095d5a7b51b7eda26ba778780
|
|
@@ -217,7 +217,7 @@ NAME_FOR_DEPLOYMENT='#{configuration}'
|
|
|
217
217
|
|
|
218
218
|
puts "--> Looking for the best match among found profiles, based on similarity between profile's app id and desired bundle id ..."
|
|
219
219
|
best_match = find_best_match_for_bundle_id(profiles_and_identities, new_bundle_id)
|
|
220
|
-
puts_header "--> Best match: #{best_match}"
|
|
220
|
+
puts_header "--> Best match: #{best_match.to_s}"
|
|
221
221
|
|
|
222
222
|
profile_info = best_match.first
|
|
223
223
|
identity_name = best_match.last
|
|
@@ -665,9 +665,14 @@ NAME_FOR_DEPLOYMENT='#{configuration}'
|
|
|
665
665
|
def get_valid_keychain_identities()
|
|
666
666
|
keychain_name = 'XCodeKeys'
|
|
667
667
|
keychain_path = %x[ security list | grep '#{keychain_name}' | sed 's/\"//g' | xargs ].strip
|
|
668
|
-
security_report = %x[ #{IDENTITIESLIST_UTILITY_PATH} -k #{keychain_path} ]
|
|
669
|
-
|
|
670
|
-
|
|
668
|
+
security_report = %x[ '#{IDENTITIESLIST_UTILITY_PATH}' -k '#{keychain_path}' ]
|
|
669
|
+
|
|
670
|
+
# TODO: remove after debugging!
|
|
671
|
+
puts '*****************************************'
|
|
672
|
+
security_report.lines.each { |line| puts line }
|
|
673
|
+
puts '*****************************************'
|
|
674
|
+
|
|
675
|
+
entries = security_report.split(/\n/)
|
|
671
676
|
entries.to_set
|
|
672
677
|
end
|
|
673
678
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nixenvironment
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.63
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karen
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2015-09-
|
|
12
|
+
date: 2015-09-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: cocoapods
|