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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db89e0313b7e7113969f6c37d6877274cf49cd5c
4
- data.tar.gz: 35a9e4ed144e9a5aee3aa41256b80da90b0a17a9
3
+ metadata.gz: 904c8b76243e1ad4a926c68c1cb57d13dbffca47
4
+ data.tar.gz: 01d6717eb374ae084b21958d790c3d13c25b648e
5
5
  SHA512:
6
- metadata.gz: 348f22c4b52117fa63b51bf51fedd20ecb91bae31e7a6b0671df2ad5b0e1cc055e768f7ea15df1dcfef5025d7422fa35d377b9200758b7ef8573ac8a4b6a42e0
7
- data.tar.gz: 2501453961c2dd705585cbf820d764739d5579512ccdc1d893b9e208b02a81dabb463efb4806e023ab77b7fb911959c63558f9646d056b2d8ebf3ccb25bcbbec
6
+ metadata.gz: 950b49aa215f0dba0b321172f76b8e0d9d72bc3441a4b2da27a4b64982cc3b08dff16996dcd1dc06783081659d94c52c669c358bbe4774089b88fce10a3dd2e6
7
+ data.tar.gz: dfc6cf69fb4ffe10642e079f952c4429c2a4af2afcdfda7b0eda5bb972880d01ef08f7444f96aba28bef06969f70781997028556a6b0d34c8504bf1b26fa4298
@@ -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)
@@ -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
- UI.user_error!("Could not find a matching code signing identity for type '#{profile_type.to_s.split(':').last}'. You can use cert to generate one: \nhttps://github.com/fastlane/fastlane/tree/master/cert")
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
@@ -1,3 +1,3 @@
1
1
  module Sigh
2
- VERSION = "1.10.0"
2
+ VERSION = "1.10.1"
3
3
  end
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.0
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-29 00:00:00.000000000 Z
11
+ date: 2016-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core