fastlane-plugin-cosigner 1.0.3 → 1.0.4
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b11a6ef469bfb49b467211fdbca876521387e12b
|
4
|
+
data.tar.gz: 7382099bf2f8eedd49965c2e498b677b20b2e5e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6cea728e537c6c91447149348e2e808b5eb3e8b56fe5a62cb228026d2df40d93b74e754612a5a099b56c78529b57c6e397d392b46571e9f8e5676c8664b61200
|
7
|
+
data.tar.gz: 0e7e9d3a75bcbc00a9503711a9cf824e953903ec93da18e12d93d9de249b1d9e611954d6cb939a2be8af5972b02cf26f359317534b21c10b604cc41b5236321b
|
@@ -28,8 +28,10 @@ module Fastlane
|
|
28
28
|
build_settings['PROVISIONING_PROFILE'] = params[:profile_uuid]
|
29
29
|
end
|
30
30
|
|
31
|
-
|
32
|
-
|
31
|
+
if params[:development_team]
|
32
|
+
UI.message "Updating Xcode project's DEVELOPMENT_TEAM to \"#{params[:development_team]}\" 👯".green
|
33
|
+
build_settings['DEVELOPMENT_TEAM'] = params[:development_team]
|
34
|
+
end
|
33
35
|
|
34
36
|
if params[:bundle_identifier]
|
35
37
|
UI.message "Updatind Xcode project's Bundle identifier \"#{params[:bundle_identifier]}\" 🤗".green
|
@@ -87,8 +89,7 @@ Xcode project in which two different Apple Developer accounts/teams are required
|
|
87
89
|
default_value: "iPhone Distribution"),
|
88
90
|
FastlaneCore::ConfigItem.new(key: :profile_name,
|
89
91
|
env_name: "PROVISIONING_PROFILE_SPECIFIER",
|
90
|
-
description: "Provisioning profile name to use for code signing",
|
91
|
-
default_value: "\"$(PROFILE_NAME)\""),
|
92
|
+
description: "Provisioning profile name to use for code signing"),
|
92
93
|
FastlaneCore::ConfigItem.new(key: :profile_uuid,
|
93
94
|
env_name: "PROVISIONING_PROFILE",
|
94
95
|
description: "Provisioning profile UUID to use for code signing",
|
@@ -96,7 +97,7 @@ Xcode project in which two different Apple Developer accounts/teams are required
|
|
96
97
|
FastlaneCore::ConfigItem.new(key: :development_team,
|
97
98
|
env_name: "TEAM_ID",
|
98
99
|
description: "Development team identifier",
|
99
|
-
|
100
|
+
optional: true),
|
100
101
|
FastlaneCore::ConfigItem.new(key: :bundle_identifier,
|
101
102
|
env_name: "APP_IDENTIFIER",
|
102
103
|
description: "Application Product Bundle Identifier",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-cosigner
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- André Pacheco Neves, Luís Portela Afonso
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: xcodeproj
|