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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35e0aa2fe96ca73bc08ba84393f91f7484f2f161f09f41b3cb3e7ca8e56c707a
4
- data.tar.gz: 6dd225e72b6c2f71026d9f3ac81c6a561876e3f228d65a62fceb9fa2a00e5f8a
3
+ metadata.gz: a0965ec8703a3f7b01a00f13259cf9c274ff43daeccd1ab46dbae348b60fcf68
4
+ data.tar.gz: 73857b2a2367470248a3b797521c1228aae6fc92f74dbe7ddd1830a32ac2adc2
5
5
  SHA512:
6
- metadata.gz: 48916c9c1da0e81216db148ae837a73bce584072a41ff50f92f4096466182e6e8e4799946244393348ea412fc8064796a61849bc7689bb719b9cf9c96a223b47
7
- data.tar.gz: 1beba52d4ed0ed49de6420f0abbd18e5a0d2c56f281ac44211d52b9b6a2f531e77fd6326d8a20f4dddd24caa0f15234b0ceda88a40d23b7a0ba06effb64067c8
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 [Unity docker image](https://gitlab.com/gableroux/unity3d)
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 | Description | Default | Env Var Name |
38
- |-------------------------------|--------------------------------------------------|-------------|----------------------------------------|
39
- | unity_path | Path to Unity executable | | FL_UNITY_PATH |
40
- | unity_version | Unity version to execute | | FL_UNITY_VERSION |
41
- | project_path | Path to Unity project | Current Dir | FL_UNITY_PROJECT_PATH |
42
- | batchmode | Run command in batch mode | true | FL_UNITY_BATCHMODE |
43
- | nographics | Do not initialize the graphics device | true | FL_UNITY_NOGRAPHICS |
44
- | quit | Quit the Unity after command execution | true | FL_UNITY_QUIT |
45
- | username | Username to log in | | FL_UNITY_USERNAME |
46
- | password | Password to log in | | FL_UNITY_PASSWORD |
47
- | build_target | Active build target like "iOS" or "Android" | | FL_UNITY_BUILD_TARGET |
48
- | execute_method | Static method to execute | | FL_UNITY_EXECUTE_METHOD |
49
- | enable_cache_server | Enable usage of Accelerator Cache Server | | FL_UNITY_ENABLE_CACHE_SERVER |
50
- | cache_server_endpoint | Endpoint address of Accelerator Cache Server | | FL_UNITY_CACHE_SERVER_ENDPOINT |
51
- | cache_server_namespace_prefix | Namespace prefix for Accelerator Cache Server | | FL_UNITY_CACHE_SERVER_NAMESPACE_PREFIX |
52
- | cache_server_enable_download | Enable downloading from Accelerator Cache Server | | FL_UNITY_CACHE_SERVER_ENABLE_DOWNLOAD |
53
- | cache_server_enable_upload | Enable uploading to Accelerator Cache Server | | FL_UNITY_CACHE_SERVER_ENABLE_UPLOAD |
54
- | extra_args | Extra arguments | | FL_UNITY_EXTRA_ARGS |
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 = Helper::UnityHelper.find_unity_path(params[:unity_version]) unless 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 << " -batchmode" if params[:batchmode]
17
- cmd << " -nographics" if params[:nographics]
18
- cmd << " -quit" if params[:quit]
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 << " -adb2 -EnableCacheServer" if params[:enable_cache_server]
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
- "Fastlane plugin for Unity"
43
+ 'Fastlane plugin for Unity'
42
44
  end
43
45
 
44
46
  def self.authors
45
- ["safu9"]
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
- "Fastlane plugin for Unity. Easily run Unity to build, test and execute method from fastlane."
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(key: :unity_path,
60
- env_name: "FL_UNITY_PATH",
61
- description: "Path to Unity executable",
62
- optional: true,
63
- conflicting_options: [:unity_version]),
64
-
65
- FastlaneCore::ConfigItem.new(key: :unity_version,
66
- env_name: "FL_UNITY_VERSION",
67
- description: "Unity version to execute",
68
- optional: true,
69
- conflicting_options: [:unity_path]),
70
-
71
- FastlaneCore::ConfigItem.new(key: :project_path,
72
- env_name: "FL_UNITY_PROJECT_PATH",
73
- description: "Path to Unity project",
74
- default_value: Dir.pwd,
75
- optional: true),
76
-
77
- FastlaneCore::ConfigItem.new(key: :batchmode,
78
- env_name: "FL_UNITY_BATCHMODE",
79
- description: "Run command in batch mode",
80
- default_value: true,
81
- is_string: false),
82
-
83
- FastlaneCore::ConfigItem.new(key: :nographics,
84
- env_name: "FL_UNITY_NOGRAPHICS",
85
- description: "Do not initialize the graphics device",
86
- default_value: true,
87
- is_string: false),
88
-
89
- FastlaneCore::ConfigItem.new(key: :quit,
90
- env_name: "FL_UNITY_QUIT",
91
- description: "Quit the Unity after command execution",
92
- default_value: true,
93
- is_string: false),
94
-
95
- FastlaneCore::ConfigItem.new(key: :username,
96
- env_name: "FL_UNITY_USERNAME",
97
- description: "Username to log in",
98
- optional: true),
99
-
100
- FastlaneCore::ConfigItem.new(key: :password,
101
- env_name: "FL_UNITY_PASSWORD",
102
- description: "Password to log in",
103
- optional: true),
104
-
105
- FastlaneCore::ConfigItem.new(key: :build_target,
106
- env_name: "FL_UNITY_BUILD_TARGET",
107
- description: "Active build target",
108
- optional: true),
109
-
110
- FastlaneCore::ConfigItem.new(key: :execute_method,
111
- env_name: "FL_UNITY_EXECUTE_METHOD",
112
- description: "Static method to execute",
113
- optional: true),
114
-
115
- FastlaneCore::ConfigItem.new(key: :enable_cache_server,
116
- env_name: "FL_UNITY_ENABLE_CACHE_SERVER",
117
- description: "Enable usage of Accelerator Cache Server",
118
- default_value: false,
119
- is_string: false),
120
-
121
- FastlaneCore::ConfigItem.new(key: :cache_server_endpoint,
122
- env_name: "FL_UNITY_CACHE_SERVER_ENDPOINT",
123
- description: "Endpoint address of Accelerator Cache Server",
124
- optional: true),
125
-
126
- FastlaneCore::ConfigItem.new(key: :cache_server_namespace_prefix,
127
- env_name: "FL_UNITY_CACHE_SERVER_NAMESPACE_PREFIX",
128
- description: "Namespace prefix for Accelerator Cache Server",
129
- optional: true),
130
-
131
- FastlaneCore::ConfigItem.new(key: :cache_server_enable_download,
132
- env_name: "FL_UNITY_CACHE_SERVER_ENABLE_DOWNLOAD",
133
- description: "Enable downloading from Accelerator Cache Server",
134
- optional: true,
135
- default_value: nil,
136
- is_string: false),
137
-
138
- FastlaneCore::ConfigItem.new(key: :cache_server_enable_upload,
139
- env_name: "FL_UNITY_CACHE_SERVER_ENABLE_UPLOAD",
140
- description: "Enable uploading to Accelerator Cache Server",
141
- optional: true,
142
- default_value: nil,
143
- is_string: false),
144
-
145
- FastlaneCore::ConfigItem.new(key: :extra_args,
146
- env_name: "FL_UNITY_EXTRA_ARGS",
147
- description: "Extra arguments",
148
- optional: true)
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?("UI")
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
- # See: https://gitlab.com/gableroux/unity3d
18
- paths << "/opt/Unity/Editor/Unity"
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
- paths << "C:\\Program Files\\Unity\\Editor\\Unity.exe"
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
- paths << "/Applications/Unity/Unity.app/Contents/MacOS/Unity"
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
- return paths.find { |path| File.exist?(path) }
40
+ paths.find { |path| File.exist?(path) }
32
41
  end
33
42
  end
34
43
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Unity
3
- VERSION = "1.1.2"
3
+ VERSION = '1.2.0'
4
4
  end
5
5
  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.1.2
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: 2021-02-02 00:00:00.000000000 Z
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: pry
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: bundler
42
+ name: fastlane
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: '0'
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: '0'
54
+ version: 2.227.0
55
55
  - !ruby/object:Gem::Dependency
56
- name: rspec
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: rspec_junit_formatter
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: rake
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: rubocop
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.49.1
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.49.1
110
+ version: '0'
111
111
  - !ruby/object:Gem::Dependency
112
- name: rubocop-require_tools
112
+ name: rubocop
113
113
  requirement: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - ">="
116
116
  - !ruby/object:Gem::Version
117
- version: '0'
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: '0'
124
+ version: 1.74.0
125
125
  - !ruby/object:Gem::Dependency
126
- name: simplecov
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: fastlane
140
+ name: simplecov
141
141
  requirement: !ruby/object:Gem::Requirement
142
142
  requirements:
143
143
  - - ">="
144
144
  - !ruby/object:Gem::Version
145
- version: 2.165.0
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: 2.165.0
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.1.4
185
+ rubygems_version: 3.2.33
185
186
  signing_key:
186
187
  specification_version: 4
187
188
  summary: Fastlane plugin for Unity