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: 9da9e2a4cd0b78caf5718292aa3e32f6710aa0978b513a4d5fc63d4cb0d51a4e
4
- data.tar.gz: 23a39370b33fa51b0b486e9b649c65d11c508a9579afd2c2ba1125df02efc382
3
+ metadata.gz: 560a2cc888de43ea2b2275f8975cd9ef35323e1438f12b43a5f90de41650f91e
4
+ data.tar.gz: 5566127cb767dab0d02a763b1210962547bb8c482fecfa04fa218380ff041514
5
5
  SHA512:
6
- metadata.gz: 64723c98b1fcb8920fe7a2967e1151f779136f36405b2674022219a22bcfe209e5b33ae4c1439d07aa24fd75a7ce0f77312a353f5a6ac9c89ba09b487e43e4d1
7
- data.tar.gz: 77c7e3968377357f41621a8ae28aa7e4a0e380aeccdd48684a23c1f583974d9cad0fdcdce1cc76e76c9c4719f645f0b9e66db4bed7762e83140b76872bc02c83
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",
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Teak
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-teak
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pat Wilson