fastlane-plugin-fastci 0.0.11 → 0.0.12

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: fc2702e9749e36590e23e9deb648e999334e439ac7a16cc36214d3292e0e4708
4
- data.tar.gz: 6f77e4b761a1df58bad1645a8dbc85cefa9854cb38314953675f29e13ebf2dc9
3
+ metadata.gz: beca80c5ed38df0f56430ea53056399285eaf4eb465c7918cca00dc6a0e65d75
4
+ data.tar.gz: b22ec9b71c62abc98c57860e140781f5cf3753d86498e696b68c3a6e0a131fe6
5
5
  SHA512:
6
- metadata.gz: 3f97767787b68e50f0254b6f2179287adde80273fe7206c9a1d8cdfd4998cbdd524c90471b5d8cf3df18c6dcae293da10508d00f50f59dda699c08752815b515
7
- data.tar.gz: bc9cb51efa44e4fdf19fe37d606e7cafebdabf9fde5a81ed52126494849952bc89860d4cc7bbc25999511290518599c4bd016cb215d686cf34d218cedc2708d9
6
+ metadata.gz: 81c9c0f0ff28e37828515264276656128d3e14c8eb4c4b99add923a55e95e8876c59a1376ed4fde9951b4cf680aeff73ba4a25c51226c0208aa7e8c92904068a
7
+ data.tar.gz: 468dfc9af7d196b7c3d5360881aefae651a58ec2f240d9233c0063c20d2b91c60e04ef39e6a42d66cfdb2ea3e494f44690ace64239558eb60223fec53f4ff3d6
@@ -170,7 +170,10 @@ module Fastlane
170
170
 
171
171
  # 代码分析
172
172
  if is_analyze_swiftlint && gym_method != "app-store"
173
- analyze_swiftlint(is_from_package: true, configuration: configuration)
173
+ other_action.analyze_swiftlint(
174
+ is_from_package: true,
175
+ configuration: configuration
176
+ )
174
177
  # 结果复制到桌面
175
178
  FileUtils.cp(SWIFTLINT_HTML_FILE, target_path)
176
179
  FileUtils.cp(SWIFTLINT_ANALYZE_HTML_FILE, target_path)
@@ -181,7 +184,9 @@ module Fastlane
181
184
 
182
185
  # 重复代码检查
183
186
  if is_detect_duplicity_code && gym_method != "app-store"
184
- detect_code_duplicity(is_all: true)
187
+ other_action.detect_code_duplicity(
188
+ is_all: true
189
+ )
185
190
  # 结果复制到桌面
186
191
  FileUtils.cp(DUPLICITY_CODE_HTML_FILE, target_path)
187
192
  UI.message("*************| 重复代码检查完成 |*************")
@@ -191,7 +196,7 @@ module Fastlane
191
196
 
192
197
  # 无用代码检查
193
198
  if is_detect_unused_code && gym_method != "app-store"
194
- DetectUnusedCodeAction.run(
199
+ other_action.detect_unused_code(
195
200
  scheme: scheme,
196
201
  is_from_package: true,
197
202
  configuration: configuration
@@ -205,7 +210,7 @@ module Fastlane
205
210
 
206
211
  # 无用图片检查
207
212
  if is_detect_unused_image && gym_method != "app-store"
208
- DetectUnusedImageAction.run({})
213
+ other_action.detect_unused_image()
209
214
  # 结果复制到桌面
210
215
  FileUtils.cp(Constants.UNUSED_IMAGE_HTML_FILE, target_path)
211
216
  UI.message("*************| 无用图片检查完成 |*************")
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Fastci
3
- VERSION = "0.0.11"
3
+ VERSION = "0.0.12"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-fastci
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - watermelon