sigh 1.10.0 → 1.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/sigh/resign.rb +3 -3
- data/lib/sigh/runner.rb +4 -1
- data/lib/sigh/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: 904c8b76243e1ad4a926c68c1cb57d13dbffca47
|
4
|
+
data.tar.gz: 01d6717eb374ae084b21958d790c3d13c25b648e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 950b49aa215f0dba0b321172f76b8e0d9d72bc3441a4b2da27a4b64982cc3b08dff16996dcd1dc06783081659d94c52c669c358bbe4774089b88fce10a3dd2e6
|
7
|
+
data.tar.gz: dfc6cf69fb4ffe10642e079f952c4429c2a4af2afcdfda7b0eda5bb972880d01ef08f7444f96aba28bef06969f70781997028556a6b0d34c8504bf1b26fa4298
|
data/lib/sigh/resign.rb
CHANGED
@@ -5,15 +5,15 @@ module Sigh
|
|
5
5
|
class Resign
|
6
6
|
def run(options, args)
|
7
7
|
# get the command line inputs and parse those into the vars we need...
|
8
|
-
ipa, signing_identity, provisioning_profiles, entitlements, version, display_name, short_version, bundle_version, new_bundle_id, use_app_entitlements = get_inputs(options, args)
|
8
|
+
ipa, signing_identity, provisioning_profiles, entitlements, version, display_name, short_version, bundle_version, new_bundle_id, use_app_entitlements, keychain_path = get_inputs(options, args)
|
9
9
|
# ... then invoke our programmatic interface with these vars
|
10
10
|
unless resign(ipa, signing_identity, provisioning_profiles, entitlements, version, display_name, short_version, bundle_version, new_bundle_id, use_app_entitlements, keychain_path)
|
11
11
|
UI.user_error!("Failed to re-sign .ipa")
|
12
12
|
end
|
13
13
|
end
|
14
14
|
|
15
|
-
def self.resign(ipa, signing_identity, provisioning_profiles, entitlements, version, display_name, short_version, bundle_version, new_bundle_id, use_app_entitlements)
|
16
|
-
self.new.resign(ipa, signing_identity, provisioning_profiles, entitlements, version, display_name, short_version, bundle_version, new_bundle_id, use_app_entitlements)
|
15
|
+
def self.resign(ipa, signing_identity, provisioning_profiles, entitlements, version, display_name, short_version, bundle_version, new_bundle_id, use_app_entitlements, keychain_path)
|
16
|
+
self.new.resign(ipa, signing_identity, provisioning_profiles, entitlements, version, display_name, short_version, bundle_version, new_bundle_id, use_app_entitlements, keychain_path)
|
17
17
|
end
|
18
18
|
|
19
19
|
def resign(ipa, signing_identity, provisioning_profiles, entitlements, version, display_name, short_version, bundle_version, new_bundle_id, use_app_entitlements, keychain_path)
|
data/lib/sigh/runner.rb
CHANGED
@@ -163,7 +163,10 @@ module Sigh
|
|
163
163
|
filters << "Owner Name: '#{Sigh.config[:cert_owner_name]}' " if Sigh.config[:cert_owner_name]
|
164
164
|
filters << "Certificate ID: '#{Sigh.config[:cert_id]}' " if Sigh.config[:cert_id]
|
165
165
|
UI.important "No certificates for filter: #{filters}" if filters.length > 0
|
166
|
-
|
166
|
+
message = "Could not find a matching code signing identity for type '#{profile_type.to_s.split(':').last}'. "
|
167
|
+
message += "It is recommended to use match to manage code signing for you, more information on https://codesigning.guide."
|
168
|
+
message += "If you don't want to do so, you can also use cert to generate a new one: https://fastlane.tools/cert"
|
169
|
+
UI.user_error!(message)
|
167
170
|
end
|
168
171
|
|
169
172
|
return certificates if Sigh.config[:development] # development profiles support multiple certificates
|
data/lib/sigh/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sigh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.10.
|
4
|
+
version: 1.10.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|