fastlane-plugin-fir_cli 2.0.0 → 2.0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +9 -0
- data/lib/fastlane/plugin/fir_cli/actions/fir_cli_action.rb +29 -18
- data/lib/fastlane/plugin/fir_cli/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 368235c2b43095b245acbb49baa71803bbb72ac8d5c572d4c9c9be4d48d60dfc
|
4
|
+
data.tar.gz: 83821430c1ce49fc87d682552a475099804acf9e4aef9d191ef9b9925edf5a5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 546578db52b960c94025154e0f0c2ea46fbe5c7cb81039c4f5f2a169817f4c1a3f6233d854e13c5f4ffe01b4ef3d33c43ac28761dbdb4933ba8d47dd17f5dacb
|
7
|
+
data.tar.gz: a11a5b9d860748d1aa269b874f88da89133f60160a97506e71149367426540f5787a9ae11eb6d40fe734d651929f5c5259d6a71f34535f926d7e95e99cdabe36
|
data/README.md
CHANGED
@@ -67,6 +67,15 @@ For any other issues and feedback about this plugin, please submit it to this re
|
|
67
67
|
|
68
68
|
If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
|
69
69
|
|
70
|
+
|
71
|
+
## Buy me a coffee
|
72
|
+
|
73
|
+
Thanks!
|
74
|
+
|
75
|
+
感谢鼓励作者维护!
|
76
|
+
|
77
|
+
![luckin](luckin_coffee.png)
|
78
|
+
|
70
79
|
## Using _fastlane_ Plugins
|
71
80
|
|
72
81
|
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
@@ -20,13 +20,15 @@ module Fastlane
|
|
20
20
|
changelog: params[:changelog],
|
21
21
|
open: params[:open],
|
22
22
|
password: params[:password],
|
23
|
-
short: params[:short]
|
23
|
+
short: params[:short],
|
24
|
+
dingtalk_access_token: params[:dingtalk_access_token],
|
25
|
+
switch_to_qiniu: params[:switch_to_qiniu]
|
24
26
|
}.reject {|_k, v| v.nil?}
|
25
27
|
FirHelper.publish(fir_args, options)
|
26
28
|
end
|
27
29
|
|
28
30
|
def self.description
|
29
|
-
"upload ipa or apk to fir.im"
|
31
|
+
"upload ipa or apk to fir.im using fir-cli (This plugin is maintained by fir.im official)"
|
30
32
|
end
|
31
33
|
|
32
34
|
def self.authors
|
@@ -60,25 +62,25 @@ module Fastlane
|
|
60
62
|
description: "fir short",
|
61
63
|
optional: true),
|
62
64
|
FastlaneCore::ConfigItem.new(key: :force_pin_history,
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
65
|
+
env_name: "FIR_APP_FORCE_PIN_HISTORY",
|
66
|
+
description: "pin this release to download page",
|
67
|
+
default_value: false,
|
68
|
+
optional: true),
|
67
69
|
FastlaneCore::ConfigItem.new(key: :skip_update_icon,
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
70
|
+
env_name: "FIR_APP_SKIP_UPDATE_ICON",
|
71
|
+
description: "skip upload icon",
|
72
|
+
default_value: false,
|
73
|
+
optional: true),
|
72
74
|
FastlaneCore::ConfigItem.new(key: :specify_icon_file,
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
75
|
+
env_name: "FIR_SPECIFY_ICON_FILE_PATH",
|
76
|
+
description: "APP ICON FILE PATH",
|
77
|
+
default_value: nil,
|
78
|
+
optional: true),
|
77
79
|
FastlaneCore::ConfigItem.new(key: :changelog,
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
80
|
+
env_name: "FIR_APP_CHANGELOG",
|
81
|
+
description: "changelog path or content",
|
82
|
+
default_value: nil,
|
83
|
+
optional: true),
|
82
84
|
FastlaneCore::ConfigItem.new(key: :open,
|
83
85
|
env_name: "FIR_APP_OPEN",
|
84
86
|
description: "true/false if open for everyone",
|
@@ -88,6 +90,15 @@ module Fastlane
|
|
88
90
|
env_name: "FIR_APP_PASSWORD",
|
89
91
|
description: "Set password for app",
|
90
92
|
default_value: nil,
|
93
|
+
optional: true),
|
94
|
+
FastlaneCore::ConfigItem.new(key: :switch_to_qiniu,
|
95
|
+
env_name: "FIR_SWITCH_TO_QINIU",
|
96
|
+
description: "switch to qiniu upload",
|
97
|
+
default_value: false,
|
98
|
+
optional: true),
|
99
|
+
FastlaneCore::ConfigItem.new(key: :dingtalk_access_token,
|
100
|
+
env_name: "FIR_DINGTALK_ACCESS_TOKEN",
|
101
|
+
description: "dingtalk_access_token",
|
91
102
|
optional: true)
|
92
103
|
|
93
104
|
]
|
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.0
|
4
|
+
version: 2.0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- atpking
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-12-03 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.0
|
19
|
+
version: 2.0.0
|
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.0
|
26
|
+
version: 2.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: pry
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
195
195
|
- !ruby/object:Gem::Version
|
196
196
|
version: '0'
|
197
197
|
requirements: []
|
198
|
-
rubygems_version: 3.0.
|
198
|
+
rubygems_version: 3.0.3
|
199
199
|
signing_key:
|
200
200
|
specification_version: 4
|
201
201
|
summary: upload ipa or apk to fir.im
|