fastlane 2.84.0.beta.20180228050122 → 2.84.0.beta.20180301050048
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: bc4f2617495ec5aa0f8ecfc5f067e8832f49d74c
|
4
|
+
data.tar.gz: 5265c56a7d5a5c66385bb6635e4165f3c9fee185
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6565eadda7a60e7c1476613589fb76e21a49900435b9b984dd1f5068ed4a08a901e0b534a07f7e0119affd308a27c78ae716a345a68abcfd6a48f97b81d7f418
|
7
|
+
data.tar.gz: 97b07f92a3fdd1b41335c7e7ce0e75622012302859aa889bed53f9705c96aeb4ff9bfffcdab43dd1ba27d3dee6474a0b61c8acdd611a6025fbcd5b3c892ee839
|
@@ -248,6 +248,16 @@ match(app_identifier: ["tools.fastlane.app", "tools.fastlane.app.today_widget"],
|
|
248
248
|
|
249
249
|
_match_ can even use the same one Git repository for all bundle identifiers.
|
250
250
|
|
251
|
+
##### Templates (aka: custom entitlements)
|
252
|
+
|
253
|
+
Match can generate profiles that contain custom entitlements by passing in the entitlement's name with the `template_name` parameter.
|
254
|
+
|
255
|
+
```
|
256
|
+
match(git_url: "https://github.com/fastlane/certificates",
|
257
|
+
type: "development",
|
258
|
+
template_name: "Apple Pay Pass Suppression Development")
|
259
|
+
```
|
260
|
+
|
251
261
|
### Setup Xcode project
|
252
262
|
|
253
263
|
[Docs on how to set up your Xcode project](/codesigning/xcode-project/)
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Fastlane
|
2
|
-
VERSION = '2.84.0.beta.
|
2
|
+
VERSION = '2.84.0.beta.20180301050048'.freeze
|
3
3
|
DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
|
4
4
|
MINIMUM_XCODE_RELEASE = "7.0".freeze
|
5
5
|
RUBOCOP_REQUIREMENT = '0.49.1'.freeze
|
data/match/lib/match/options.rb
CHANGED
@@ -156,7 +156,7 @@ module Match
|
|
156
156
|
end),
|
157
157
|
FastlaneCore::ConfigItem.new(key: :template_name,
|
158
158
|
env_name: "MATCH_PROVISIONING_PROFILE_TEMPLATE_NAME",
|
159
|
-
description: "The name of provisioning profile template. If the developer account has provisioning profile templates, template name can be found by inspecting the Entitlements drop-down while creating/editing a provisioning profile",
|
159
|
+
description: "The name of provisioning profile template. If the developer account has provisioning profile templates (aka: custom entitlements), the template name can be found by inspecting the Entitlements drop-down while creating/editing a provisioning profile (e.g. \"Apple Pay Pass Suppression Development\")",
|
160
160
|
optional: true,
|
161
161
|
default_value: nil)
|
162
162
|
]
|
data/sigh/lib/sigh/options.rb
CHANGED
@@ -142,7 +142,7 @@ module Sigh
|
|
142
142
|
end),
|
143
143
|
FastlaneCore::ConfigItem.new(key: :template_name,
|
144
144
|
env_name: "SIGH_PROVISIONING_PROFILE_TEMPLATE_NAME",
|
145
|
-
description: "The name of provisioning profile template. If the developer account has provisioning profile templates, template name can be found by inspecting the Entitlements drop-down while creating/editing a provisioning profile",
|
145
|
+
description: "The name of provisioning profile template. If the developer account has provisioning profile templates (aka: custom entitlements), the template name can be found by inspecting the Entitlements drop-down while creating/editing a provisioning profile (e.g. \"Apple Pay Pass Suppression Development\")",
|
146
146
|
optional: true,
|
147
147
|
default_value: nil)
|
148
148
|
]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.84.0.beta.
|
4
|
+
version: 2.84.0.beta.20180301050048
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -27,7 +27,7 @@ authors:
|
|
27
27
|
autorequire:
|
28
28
|
bindir: bin
|
29
29
|
cert_chain: []
|
30
|
-
date: 2018-
|
30
|
+
date: 2018-03-01 00:00:00.000000000 Z
|
31
31
|
dependencies:
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: slack-notifier
|
@@ -1616,24 +1616,24 @@ metadata:
|
|
1616
1616
|
post_install_message:
|
1617
1617
|
rdoc_options: []
|
1618
1618
|
require_paths:
|
1619
|
-
- deliver/lib
|
1620
|
-
- pem/lib
|
1621
1619
|
- supply/lib
|
1622
|
-
-
|
1620
|
+
- pilot/lib
|
1621
|
+
- fastlane/lib
|
1623
1622
|
- scan/lib
|
1624
|
-
- frameit/lib
|
1625
|
-
- fastlane_core/lib
|
1626
|
-
- snapshot/lib
|
1627
|
-
- produce/lib
|
1628
|
-
- cert/lib
|
1629
|
-
- screengrab/lib
|
1630
1623
|
- credentials_manager/lib
|
1631
|
-
- sigh/lib
|
1632
1624
|
- match/lib
|
1625
|
+
- snapshot/lib
|
1626
|
+
- screengrab/lib
|
1627
|
+
- fastlane_core/lib
|
1633
1628
|
- precheck/lib
|
1629
|
+
- pem/lib
|
1630
|
+
- cert/lib
|
1631
|
+
- produce/lib
|
1632
|
+
- gym/lib
|
1633
|
+
- deliver/lib
|
1634
|
+
- frameit/lib
|
1635
|
+
- sigh/lib
|
1634
1636
|
- spaceship/lib
|
1635
|
-
- pilot/lib
|
1636
|
-
- fastlane/lib
|
1637
1637
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1638
1638
|
requirements:
|
1639
1639
|
- - ">="
|