fastlane-plugin-teak 1.0.1 → 1.0.2
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 560a2cc888de43ea2b2275f8975cd9ef35323e1438f12b43a5f90de41650f91e
|
|
4
|
+
data.tar.gz: 5566127cb767dab0d02a763b1210962547bb8c482fecfa04fa218380ff041514
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 879831d0925a022edfb795fb2bc30c742f2e12a9cbffad5625413541b50e7fb70a24fce6451da9d9540d33440fe55d6472670729226ba37434b90ff291ce9ddf
|
|
7
|
+
data.tar.gz: da104b05103ea588fa0fcba2d89e54ae7be2b3814913e4f4643198b3ed91c8ec483faccc4f510b3154945c40e1bf75006e293b597ddf00d52eb752b5b5280f0a
|
|
@@ -14,6 +14,7 @@ module Fastlane
|
|
|
14
14
|
FastlaneCore::PrintTable.print_values(config: params, title: "Summary for Teak Extensions")
|
|
15
15
|
teak_extensions_project_path = params[:xcodeproj]
|
|
16
16
|
teak_extensions_source = params[:source]
|
|
17
|
+
teak_extensions_source_path = params[:source_path]
|
|
17
18
|
teak_sdk_version = params[:version]
|
|
18
19
|
teak_extensions_team_id = params[:team_id]
|
|
19
20
|
teak_extensions_bundle_identifier = params[:app_identifier]
|
|
@@ -179,6 +180,11 @@ module Fastlane
|
|
|
179
180
|
description: "Path to a local checkout of the `teak-ios` repository, or S3 artifacts URL",
|
|
180
181
|
default_value: "https://github.com/GoCarrot/teak-ios.git",
|
|
181
182
|
optional: true),
|
|
183
|
+
FastlaneCore::ConfigItem.new(key: :source_path,
|
|
184
|
+
env_name: "FL_TEAK_EXTENSIONS_SOURCE_PATH",
|
|
185
|
+
description: "If `teak_extensions_source` is a git URL, the path to the extensions inside that repository",
|
|
186
|
+
default_value: "TeakExtensions/",
|
|
187
|
+
optional: true),
|
|
182
188
|
FastlaneCore::ConfigItem.new(key: :version,
|
|
183
189
|
env_name: "FL_TEAK_SDK_VERSION",
|
|
184
190
|
description: "The version of the Teak SDK in use, defaults to latest",
|