fastlane-plugin-unity 1.1.2 → 1.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 +4 -4
- data/README.md +22 -19
- data/lib/fastlane/plugin/unity/actions/unity_action.rb +144 -102
- data/lib/fastlane/plugin/unity/helper/unity_helper.rb +15 -6
- data/lib/fastlane/plugin/unity/version.rb +1 -1
- metadata +24 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a0965ec8703a3f7b01a00f13259cf9c274ff43daeccd1ab46dbae348b60fcf68
|
4
|
+
data.tar.gz: 73857b2a2367470248a3b797521c1228aae6fc92f74dbe7ddd1830a32ac2adc2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53ff32c3fc2a8e8d5bc139d39a4328cc47347037395ebe62eec99aa091cc6fed00c8ce0ad8c4c57a91a709d7823a3689608f44f2700bcb4d655ddeba6f57cee6
|
7
|
+
data.tar.gz: 6a5cdd3d693465c79a73bfbd8ff967953899237217ccd5a947408ea889398b5b896dab357f14f566dd66729df4f514f55b663e090725bd3750402b6ea478faea
|
data/README.md
CHANGED
@@ -19,6 +19,7 @@ Execute unity in command line from fastlane
|
|
19
19
|
|
20
20
|
```ruby
|
21
21
|
unity(
|
22
|
+
unity_version: "6000.0.43f1",
|
22
23
|
build_target: "Android",
|
23
24
|
execute_method: "ClassName.MethodName",
|
24
25
|
extra_args: "-arg1 -arg2"
|
@@ -28,30 +29,32 @@ unity(
|
|
28
29
|
This plugin determine path to Unity executable in the following order
|
29
30
|
|
30
31
|
1. `unity_path` option
|
31
|
-
1. Path used in
|
32
|
+
1. Path used in docker image [gableroux/unity3d](https://gitlab.com/gableroux/unity3d) (only in docker)
|
32
33
|
1. Default path in Unity Hub with `unity_version` option
|
34
|
+
1. Default Path of in [install-unity](https://github.com/sttz/install-unity) with `unity_version` option
|
33
35
|
1. Default path of standalone installation
|
34
36
|
|
35
37
|
### Supported options
|
36
38
|
|
37
|
-
| Name
|
38
|
-
|
39
|
-
| unity_path
|
40
|
-
| unity_version
|
41
|
-
| project_path
|
42
|
-
| batchmode
|
43
|
-
| nographics
|
44
|
-
| quit
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
39
|
+
| Name <br/> Env Var Name | Description | Default |
|
40
|
+
|----------------------------------------------------------------------------|--------------------------------------------------|-------------|
|
41
|
+
| unity_path <br/> FL_UNITY_PATH | Path to Unity executable | |
|
42
|
+
| unity_version <br/> FL_UNITY_VERSION | Unity version to execute | |
|
43
|
+
| project_path <br/> FL_UNITY_PROJECT_PATH | Path to Unity project | Current Dir |
|
44
|
+
| batchmode <br/> FL_UNITY_BATCHMODE | Run command in batch mode | true |
|
45
|
+
| nographics <br/> FL_UNITY_NOGRAPHICS | Do not initialize the graphics device | true |
|
46
|
+
| quit <br/> FL_UNITY_QUIT | Quit the Unity after command execution | true |
|
47
|
+
| logfile <br/> FL_UNITY_LOGFILE | Path to output log file | - (Console) |
|
48
|
+
| username <br/> FL_UNITY_USERNAME | Username to log in | |
|
49
|
+
| password <br/> FL_UNITY_PASSWORD | Password to log in | |
|
50
|
+
| build_target <br/> FL_UNITY_BUILD_TARGET | Active build target like "iOS" or "Android" | |
|
51
|
+
| execute_method <br/> FL_UNITY_EXECUTE_METHOD | Static method to execute | |
|
52
|
+
| enable_cache_server <br/> FL_UNITY_ENABLE_CACHE_SERVER | Enable usage of Accelerator Cache Server | |
|
53
|
+
| cache_server_endpoint <br/> FL_UNITY_CACHE_SERVER_ENDPOINT | Endpoint address of Accelerator Cache Server | |
|
54
|
+
| cache_server_namespace_prefix <br/> FL_UNITY_CACHE_SERVER_NAMESPACE_PREFIX | Namespace prefix for Accelerator Cache Server | |
|
55
|
+
| cache_server_enable_download <br/> FL_UNITY_CACHE_SERVER_ENABLE_DOWNLOAD | Enable downloading from Accelerator Cache Server | |
|
56
|
+
| cache_server_enable_upload <br/> FL_UNITY_CACHE_SERVER_ENABLE_UPLOAD | Enable uploading to Accelerator Cache Server | |
|
57
|
+
| extra_args <br/> FL_UNITY_EXTRA_ARGS | Extra arguments to pass to Unity | |
|
55
58
|
|
56
59
|
See manual for detailed descriptions and other options: https://docs.unity3d.com/Manual/CommandLineArguments.html
|
57
60
|
|
@@ -6,28 +6,30 @@ module Fastlane
|
|
6
6
|
class UnityAction < Action
|
7
7
|
def self.run(params)
|
8
8
|
unity_path = params[:unity_path]
|
9
|
-
unity_path
|
10
|
-
unless unity_path
|
11
|
-
UI.user_error!("Cannot find path to unity executable!")
|
12
|
-
end
|
9
|
+
unity_path ||= Helper::UnityHelper.find_unity_path(params[:unity_version])
|
10
|
+
UI.user_error!('Cannot find path to unity executable!') unless unity_path
|
13
11
|
|
14
12
|
cmd = "\"#{unity_path}\""
|
15
13
|
cmd << " -projectPath \"#{params[:project_path]}\"" if params[:project_path]
|
16
|
-
cmd <<
|
17
|
-
cmd <<
|
18
|
-
cmd <<
|
14
|
+
cmd << ' -batchmode' if params[:batchmode]
|
15
|
+
cmd << ' -nographics' if params[:nographics]
|
16
|
+
cmd << ' -quit' if params[:quit]
|
17
|
+
|
18
|
+
cmd << ' -logfile -' if params[:logfile] == '-'
|
19
|
+
cmd << " -logfile \"#{params[:logfile]}\"" if params[:logfile] && params[:logfile] != '-'
|
20
|
+
|
19
21
|
cmd << " -username #{params[:username]}" if params[:username]
|
20
22
|
cmd << " -password #{params[:password]}" if params[:password]
|
23
|
+
|
21
24
|
cmd << " -buildTarget #{params[:build_target]}" if params[:build_target]
|
22
25
|
cmd << " -executeMethod #{params[:execute_method]}" if params[:execute_method]
|
23
26
|
|
24
|
-
cmd <<
|
27
|
+
cmd << ' -adb2 -EnableCacheServer' if params[:enable_cache_server]
|
25
28
|
cmd << " -cacheServerEndpoint #{params[:cache_server_endpoint]}" if params[:cache_server_endpoint]
|
26
29
|
cmd << " -cacheServerNamespacePrefix #{params[:cache_server_namespace_prefix]}" if params[:cache_server_namespace_prefix]
|
27
30
|
cmd << " -cacheServerEnableDownload #{params[:cache_server_enable_download]}" unless params[:cache_server_enable_download].nil?
|
28
31
|
cmd << " -cacheServerEnableUpload #{params[:cache_server_enable_upload]}" unless params[:cache_server_enable_upload].nil?
|
29
32
|
|
30
|
-
cmd << " -logfile"
|
31
33
|
cmd << " #{params[:extra_args]}" if params[:extra_args]
|
32
34
|
|
33
35
|
FastlaneCore::CommandExecutor.execute(
|
@@ -38,11 +40,11 @@ module Fastlane
|
|
38
40
|
end
|
39
41
|
|
40
42
|
def self.description
|
41
|
-
|
43
|
+
'Fastlane plugin for Unity'
|
42
44
|
end
|
43
45
|
|
44
46
|
def self.authors
|
45
|
-
[
|
47
|
+
['safu9']
|
46
48
|
end
|
47
49
|
|
48
50
|
def self.return_value
|
@@ -51,101 +53,141 @@ module Fastlane
|
|
51
53
|
|
52
54
|
def self.details
|
53
55
|
# Optional:
|
54
|
-
|
56
|
+
'Fastlane plugin for Unity. Easily run Unity to build, test and execute method from fastlane.'
|
55
57
|
end
|
56
58
|
|
57
59
|
def self.available_options
|
58
60
|
[
|
59
|
-
FastlaneCore::ConfigItem.new(
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
FastlaneCore::ConfigItem.new(
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
FastlaneCore::ConfigItem.new(
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
61
|
+
FastlaneCore::ConfigItem.new(
|
62
|
+
key: :unity_path,
|
63
|
+
env_name: 'FL_UNITY_PATH',
|
64
|
+
description: 'Path to Unity executable',
|
65
|
+
optional: true,
|
66
|
+
conflicting_options: [:unity_version]
|
67
|
+
),
|
68
|
+
|
69
|
+
FastlaneCore::ConfigItem.new(
|
70
|
+
key: :unity_version,
|
71
|
+
env_name: 'FL_UNITY_VERSION',
|
72
|
+
description: 'Unity version to execute',
|
73
|
+
optional: true,
|
74
|
+
conflicting_options: [:unity_path]
|
75
|
+
),
|
76
|
+
|
77
|
+
FastlaneCore::ConfigItem.new(
|
78
|
+
key: :project_path,
|
79
|
+
env_name: 'FL_UNITY_PROJECT_PATH',
|
80
|
+
description: 'Path to Unity project',
|
81
|
+
default_value: Dir.pwd,
|
82
|
+
optional: true
|
83
|
+
),
|
84
|
+
|
85
|
+
FastlaneCore::ConfigItem.new(
|
86
|
+
key: :batchmode,
|
87
|
+
env_name: 'FL_UNITY_BATCHMODE',
|
88
|
+
description: 'Run command in batch mode',
|
89
|
+
default_value: true,
|
90
|
+
is_string: false
|
91
|
+
),
|
92
|
+
|
93
|
+
FastlaneCore::ConfigItem.new(
|
94
|
+
key: :nographics,
|
95
|
+
env_name: 'FL_UNITY_NOGRAPHICS',
|
96
|
+
description: 'Do not initialize the graphics device',
|
97
|
+
default_value: true,
|
98
|
+
is_string: false
|
99
|
+
),
|
100
|
+
|
101
|
+
FastlaneCore::ConfigItem.new(
|
102
|
+
key: :quit,
|
103
|
+
env_name: 'FL_UNITY_QUIT',
|
104
|
+
description: 'Quit the Unity after command execution',
|
105
|
+
default_value: true,
|
106
|
+
is_string: false
|
107
|
+
),
|
108
|
+
|
109
|
+
FastlaneCore::ConfigItem.new(
|
110
|
+
key: :logfile,
|
111
|
+
env_name: 'FL_UNITY_LOGFILE',
|
112
|
+
description: 'Path to output log file (Default is console)',
|
113
|
+
optional: true,
|
114
|
+
default_value: '-'
|
115
|
+
),
|
116
|
+
|
117
|
+
FastlaneCore::ConfigItem.new(
|
118
|
+
key: :username,
|
119
|
+
env_name: 'FL_UNITY_USERNAME',
|
120
|
+
description: 'Username to log in',
|
121
|
+
optional: true
|
122
|
+
),
|
123
|
+
|
124
|
+
FastlaneCore::ConfigItem.new(
|
125
|
+
key: :password,
|
126
|
+
env_name: 'FL_UNITY_PASSWORD',
|
127
|
+
description: 'Password to log in',
|
128
|
+
optional: true
|
129
|
+
),
|
130
|
+
|
131
|
+
FastlaneCore::ConfigItem.new(
|
132
|
+
key: :build_target,
|
133
|
+
env_name: 'FL_UNITY_BUILD_TARGET',
|
134
|
+
description: 'Active build target',
|
135
|
+
optional: true
|
136
|
+
),
|
137
|
+
|
138
|
+
FastlaneCore::ConfigItem.new(
|
139
|
+
key: :execute_method,
|
140
|
+
env_name: 'FL_UNITY_EXECUTE_METHOD',
|
141
|
+
description: 'Static method to execute',
|
142
|
+
optional: true
|
143
|
+
),
|
144
|
+
|
145
|
+
FastlaneCore::ConfigItem.new(
|
146
|
+
key: :enable_cache_server,
|
147
|
+
env_name: 'FL_UNITY_ENABLE_CACHE_SERVER',
|
148
|
+
description: 'Enable usage of Accelerator Cache Server',
|
149
|
+
default_value: false,
|
150
|
+
is_string: false
|
151
|
+
),
|
152
|
+
|
153
|
+
FastlaneCore::ConfigItem.new(
|
154
|
+
key: :cache_server_endpoint,
|
155
|
+
env_name: 'FL_UNITY_CACHE_SERVER_ENDPOINT',
|
156
|
+
description: 'Endpoint address of Accelerator Cache Server',
|
157
|
+
optional: true
|
158
|
+
),
|
159
|
+
|
160
|
+
FastlaneCore::ConfigItem.new(
|
161
|
+
key: :cache_server_namespace_prefix,
|
162
|
+
env_name: 'FL_UNITY_CACHE_SERVER_NAMESPACE_PREFIX',
|
163
|
+
description: 'Namespace prefix for Accelerator Cache Server',
|
164
|
+
optional: true
|
165
|
+
),
|
166
|
+
|
167
|
+
FastlaneCore::ConfigItem.new(
|
168
|
+
key: :cache_server_enable_download,
|
169
|
+
env_name: 'FL_UNITY_CACHE_SERVER_ENABLE_DOWNLOAD',
|
170
|
+
description: 'Enable downloading from Accelerator Cache Server',
|
171
|
+
optional: true,
|
172
|
+
default_value: nil,
|
173
|
+
is_string: false
|
174
|
+
),
|
175
|
+
|
176
|
+
FastlaneCore::ConfigItem.new(
|
177
|
+
key: :cache_server_enable_upload,
|
178
|
+
env_name: 'FL_UNITY_CACHE_SERVER_ENABLE_UPLOAD',
|
179
|
+
description: 'Enable uploading to Accelerator Cache Server',
|
180
|
+
optional: true,
|
181
|
+
default_value: nil,
|
182
|
+
is_string: false
|
183
|
+
),
|
184
|
+
|
185
|
+
FastlaneCore::ConfigItem.new(
|
186
|
+
key: :extra_args,
|
187
|
+
env_name: 'FL_UNITY_EXTRA_ARGS',
|
188
|
+
description: 'Extra arguments',
|
189
|
+
optional: true
|
190
|
+
)
|
149
191
|
]
|
150
192
|
end
|
151
193
|
|
@@ -2,7 +2,7 @@ require 'fastlane_core/ui/ui'
|
|
2
2
|
require 'os'
|
3
3
|
|
4
4
|
module Fastlane
|
5
|
-
UI = FastlaneCore::UI unless Fastlane.const_defined?(
|
5
|
+
UI = FastlaneCore::UI unless Fastlane.const_defined?('UI')
|
6
6
|
|
7
7
|
module Helper
|
8
8
|
class UnityHelper
|
@@ -14,21 +14,30 @@ module Fastlane
|
|
14
14
|
paths = []
|
15
15
|
|
16
16
|
if OS::Underlying.docker?
|
17
|
-
#
|
18
|
-
|
17
|
+
# Unity docker image
|
18
|
+
# https://gitlab.com/gableroux/unity3d
|
19
|
+
paths << '/opt/Unity/Editor/Unity'
|
19
20
|
end
|
20
21
|
|
21
22
|
if OS.windows?
|
23
|
+
# Unity Hub
|
22
24
|
paths << "C:\\Program Files\\Unity\\Hub\\Editor\\#{unity_version}\\Editor\\Unity.exe" if unity_version
|
23
|
-
|
25
|
+
# Without Unity Hub
|
26
|
+
paths << 'C:\\Program Files\\Unity\\Editor\\Unity.exe'
|
24
27
|
elsif OS.mac?
|
28
|
+
# Unity Hub
|
25
29
|
paths << "/Applications/Unity/Hub/Editor/#{unity_version}/Unity.app/Contents/MacOS/Unity" if unity_version
|
26
|
-
|
30
|
+
# install-unity
|
31
|
+
# https://github.com/sttz/install-unity
|
32
|
+
paths << "/Applications/Unity #{unity_version}/Unity.app/Contents/MacOS/Unity" if unity_version
|
33
|
+
# Without Unity Hub
|
34
|
+
paths << '/Applications/Unity/Unity.app/Contents/MacOS/Unity'
|
27
35
|
elsif OS.linux?
|
36
|
+
# Unity Hub
|
28
37
|
paths << "~/Unity/Hub/Editor/#{unity_version}/Editor/Unity" if unity_version
|
29
38
|
end
|
30
39
|
|
31
|
-
|
40
|
+
paths.find { |path| File.exist?(path) }
|
32
41
|
end
|
33
42
|
end
|
34
43
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-unity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- safu9
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: os
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 1.1.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
|
-
name:
|
28
|
+
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
@@ -39,21 +39,21 @@ dependencies:
|
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
|
-
name:
|
42
|
+
name: fastlane
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 2.227.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 2.227.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: pry
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - ">="
|
@@ -67,7 +67,7 @@ dependencies:
|
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
|
-
name:
|
70
|
+
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
73
|
- - ">="
|
@@ -81,7 +81,7 @@ dependencies:
|
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
|
-
name:
|
84
|
+
name: rspec
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
87
|
- - ">="
|
@@ -95,35 +95,35 @@ dependencies:
|
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
98
|
+
name: rspec_junit_formatter
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- -
|
101
|
+
- - ">="
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 0
|
103
|
+
version: '0'
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
|
-
- -
|
108
|
+
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 0
|
110
|
+
version: '0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
|
-
name: rubocop
|
112
|
+
name: rubocop
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
115
|
- - ">="
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
117
|
+
version: 1.74.0
|
118
118
|
type: :development
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - ">="
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version:
|
124
|
+
version: 1.74.0
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
|
-
name:
|
126
|
+
name: rubocop-require_tools
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
129
|
- - ">="
|
@@ -137,19 +137,19 @@ dependencies:
|
|
137
137
|
- !ruby/object:Gem::Version
|
138
138
|
version: '0'
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
|
-
name:
|
140
|
+
name: simplecov
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
142
142
|
requirements:
|
143
143
|
- - ">="
|
144
144
|
- !ruby/object:Gem::Version
|
145
|
-
version:
|
145
|
+
version: '0'
|
146
146
|
type: :development
|
147
147
|
prerelease: false
|
148
148
|
version_requirements: !ruby/object:Gem::Requirement
|
149
149
|
requirements:
|
150
150
|
- - ">="
|
151
151
|
- !ruby/object:Gem::Version
|
152
|
-
version:
|
152
|
+
version: '0'
|
153
153
|
description:
|
154
154
|
email: safu9.dev@gmail.com
|
155
155
|
executables: []
|
@@ -165,7 +165,8 @@ files:
|
|
165
165
|
homepage: https://github.com/safu9/fastlane-plugin-unity
|
166
166
|
licenses:
|
167
167
|
- MIT
|
168
|
-
metadata:
|
168
|
+
metadata:
|
169
|
+
rubygems_mfa_required: 'true'
|
169
170
|
post_install_message:
|
170
171
|
rdoc_options: []
|
171
172
|
require_paths:
|
@@ -181,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
181
182
|
- !ruby/object:Gem::Version
|
182
183
|
version: '0'
|
183
184
|
requirements: []
|
184
|
-
rubygems_version: 3.
|
185
|
+
rubygems_version: 3.2.33
|
185
186
|
signing_key:
|
186
187
|
specification_version: 4
|
187
188
|
summary: Fastlane plugin for Unity
|