fastlane-plugin-unity3d 0.1.3 → 0.2.0
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: e09141b17f9db2590da59941fa61b70772c3f443cae2b717260c3273e466545f
|
|
4
|
+
data.tar.gz: 3f238637896ccfce2390368f70a130466746d1d479b83fb289dfaba996197431
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ce2abb9921a4005cb3ddf6f5dedee9f4da2fffc05a8269c11c2dbb80c347582408339e251e4ac42faef0be2c60f2b4c15efa8d0c82536cd290e82c3feba6592
|
|
7
|
+
data.tar.gz: ffbc47a19ca5c4f813c838d1b55339f3204fcc0bac09857f71ec2537da556105cb4063f1d99caaa5df85d127894d6ce04a7aa061bdca5014c4ea1ca614f51ab4
|
|
@@ -28,6 +28,7 @@ module Fastlane
|
|
|
28
28
|
build_cmd << " -logfile #{params[:logfile]}"
|
|
29
29
|
build_cmd << " -nographics" if params[:nographics]
|
|
30
30
|
build_cmd << " -executeMethod #{params[:execute_method]}" if params[:execute_method]
|
|
31
|
+
build_cmd << " -buildTarget #{params[:build_target]}" if params[:build_target]
|
|
31
32
|
|
|
32
33
|
UI.message "\n#{
|
|
33
34
|
Terminal::Table.new(
|
|
@@ -145,6 +146,13 @@ module Fastlane
|
|
|
145
146
|
optional: true,
|
|
146
147
|
is_string: false,
|
|
147
148
|
default_value: false),
|
|
149
|
+
|
|
150
|
+
FastlaneCore::ConfigItem.new(key: :target,
|
|
151
|
+
env_name: "FL_UNITY_BUILD_TARGET",
|
|
152
|
+
description: "build target",
|
|
153
|
+
optional: true,
|
|
154
|
+
is_string: true,
|
|
155
|
+
default_value: "Standalone"),
|
|
148
156
|
]
|
|
149
157
|
end
|
|
150
158
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-unity3d
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- fuzhongqing
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-03-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|