fastlane-plugin-fir_cli 2.0.15 → 2.0.16
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 00da23373445ba180ff71b78931c3a3f32b37e5e771e5db3192f9c063b20db43
|
4
|
+
data.tar.gz: bf099a2454e1a2e945a3f540e70f465c5ed7f37b9267b9238d4e98b4e0607800
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d1ecb4926c41aa987779cc3047cb5ee0b4923d25d0cacbee21f9de1dfc1240c3a80b49d8ca975c49b350a223ae7dd3496da4d6e3ee5266b3c8b5f289913633d
|
7
|
+
data.tar.gz: 7ed9600b10f61d288ca71536ac4bc7a08a23fd1de85fac3d6c8218f682967c46496945dcd3524a50ac92d757a9fa4a29b5d5d341f6ae76d7dc9b2b871fc0954f
|
@@ -1,12 +1,11 @@
|
|
1
|
-
require
|
2
|
-
require
|
1
|
+
require "fastlane/action"
|
2
|
+
require "fir"
|
3
3
|
# require 'byebug'
|
4
|
-
require_relative
|
4
|
+
require_relative "../helper/fir_cli_helper"
|
5
5
|
|
6
6
|
module Fastlane
|
7
7
|
module Actions
|
8
8
|
class FirCliAction < Action
|
9
|
-
|
10
9
|
def self.run(params)
|
11
10
|
UI.message("The fir_cli plugin is working!")
|
12
11
|
|
@@ -37,9 +36,9 @@ module Fastlane
|
|
37
36
|
|
38
37
|
wxwork_access_token: params[:wxwork_access_token],
|
39
38
|
wxwork_custom_message: params[:wxwork_custom_message],
|
40
|
-
wxwork_pic_url: params[:wxwork_pic_url]
|
39
|
+
wxwork_pic_url: params[:wxwork_pic_url],
|
41
40
|
|
42
|
-
}.reject {|_k, v| v.nil?}
|
41
|
+
}.reject { |_k, v| v.nil? }
|
43
42
|
answer = Helper::FirHelper.publish(fir_args, options)
|
44
43
|
UI.message("fastlane-plugin-fir_cli answer: #{answer}")
|
45
44
|
answer
|
@@ -140,49 +139,48 @@ module Fastlane
|
|
140
139
|
description: "dingtalk custom message",
|
141
140
|
optional: true),
|
142
141
|
FastlaneCore::ConfigItem.new(key: :dingtalk_at_phones,
|
143
|
-
|
144
|
-
|
145
|
-
|
142
|
+
env_name: "FIR_DINGTALK_AT_PHONES",
|
143
|
+
description: "dingtalk at phones, split with ','",
|
144
|
+
optional: true),
|
146
145
|
FastlaneCore::ConfigItem.new(key: :dingtalk_at_all,
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
146
|
+
env_name: "FIR_DINGTALK_AT_ALL",
|
147
|
+
description: "dingtalk at all people",
|
148
|
+
type: Boolean,
|
149
|
+
optional: true),
|
151
150
|
|
152
151
|
FastlaneCore::ConfigItem.new(key: :dingtalk_secret,
|
153
|
-
|
154
|
-
|
155
|
-
|
152
|
+
env_name: "FIR_DINGTALK_SECRET",
|
153
|
+
description: "Dingtalk secret code (eg: SECxxxxx)",
|
154
|
+
optional: true),
|
156
155
|
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
optional: true),
|
156
|
+
FastlaneCore::ConfigItem.new(key: :oversea_turbo,
|
157
|
+
env_name: "FIR_OVERSEA_TURBO",
|
158
|
+
description: "fir oversea turbo, increase upload speed for oversea users",
|
159
|
+
type: Boolean,
|
160
|
+
optional: true),
|
163
161
|
|
164
162
|
FastlaneCore::ConfigItem.new(key: :feishu_access_token,
|
165
|
-
|
166
|
-
|
167
|
-
|
163
|
+
env_name: "FIR_FEISHU_ACCESS_TOKEN",
|
164
|
+
description: "feishu_access_token",
|
165
|
+
optional: true),
|
168
166
|
FastlaneCore::ConfigItem.new(key: :feishu_custom_message,
|
169
|
-
|
170
|
-
|
171
|
-
|
167
|
+
env_name: "FIR_FEISHU_CUSTOM_MESSAGE",
|
168
|
+
description: "feishu custom message",
|
169
|
+
optional: true),
|
172
170
|
|
173
171
|
FastlaneCore::ConfigItem.new(key: :wxwork_access_token,
|
174
|
-
|
175
|
-
|
176
|
-
|
172
|
+
env_name: "FIR_WXWORK_ACCESS_TOKEN",
|
173
|
+
description: "wechat work webhook access_token",
|
174
|
+
optional: true),
|
177
175
|
|
178
176
|
FastlaneCore::ConfigItem.new(key: :wxwork_pic_url,
|
179
|
-
|
180
|
-
|
181
|
-
|
177
|
+
env_name: "FIR_WXWORK_PIC_URL",
|
178
|
+
description: "wechat work webhook pic url",
|
179
|
+
optional: true),
|
182
180
|
FastlaneCore::ConfigItem.new(key: :wxwork_custom_message,
|
183
|
-
|
184
|
-
|
185
|
-
|
181
|
+
env_name: "FIR_WXWORK_CUSTOM_MESSAGE",
|
182
|
+
description: "wechat work custom message",
|
183
|
+
optional: true),
|
186
184
|
|
187
185
|
]
|
188
186
|
end
|
@@ -199,6 +197,5 @@ module Fastlane
|
|
199
197
|
file_path || Actions.lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH] || Actions.lane_context[SharedValues::IPA_OUTPUT_PATH]
|
200
198
|
end
|
201
199
|
end
|
202
|
-
|
203
200
|
end
|
204
201
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-fir_cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- atpking
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-12-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fir-cli
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.0.
|
19
|
+
version: 2.0.16
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 2.0.
|
26
|
+
version: 2.0.16
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: pry
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -195,7 +195,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
195
|
- !ruby/object:Gem::Version
|
196
196
|
version: '0'
|
197
197
|
requirements: []
|
198
|
-
|
198
|
+
rubyforge_project:
|
199
|
+
rubygems_version: 2.7.7
|
199
200
|
signing_key:
|
200
201
|
specification_version: 4
|
201
202
|
summary: upload ipa or apk to fir.im
|