fastlane-plugin-fir_cli 1.0.0 → 2.0.0.beta2
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 +0 -9
- data/lib/fastlane/plugin/fir_cli/actions/fir_cli_action.rb +18 -34
- data/lib/fastlane/plugin/fir_cli/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a8c6b09db6b60d6187fe0d3d7936329a5cef763595744d87d22268ec9f517140
|
|
4
|
+
data.tar.gz: '0901cdc6e8644621e9640d2019a47ebbb9a76a01a76e8ed8ebf053519a997c11'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8da45892a42fbe6ffd015dc246108597f92bed2decad730a395637c8a0ee2744e3be0dd48466d01d3cbb6e42c481338e27e1de400318625d034ef3a2240d18e8
|
|
7
|
+
data.tar.gz: 5544e8fc9eb5a8c4f39306669877625f0d043a782753cca68cd5336b2475cf5d0d073ce630f6f15c7df9ad7b475029a86a17ba4637aa67186998d00a5686c870
|
data/README.md
CHANGED
|
@@ -67,15 +67,6 @@ 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
|
-

|
|
78
|
-
|
|
79
70
|
## Using _fastlane_ Plugins
|
|
80
71
|
|
|
81
72
|
For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
|
|
@@ -20,16 +20,13 @@ module Fastlane
|
|
|
20
20
|
changelog: params[:changelog],
|
|
21
21
|
open: params[:open],
|
|
22
22
|
password: params[:password],
|
|
23
|
-
short: params[:short]
|
|
24
|
-
dingtalk_access_token: params[:dingtalk_access_token],
|
|
25
|
-
switch_to_qiniu: params[:switch_to_qiniu],
|
|
26
|
-
dingtalk_custom_message: params[:dingtalk_custom_message]
|
|
23
|
+
short: params[:short]
|
|
27
24
|
}.reject {|_k, v| v.nil?}
|
|
28
25
|
FirHelper.publish(fir_args, options)
|
|
29
26
|
end
|
|
30
27
|
|
|
31
28
|
def self.description
|
|
32
|
-
"upload ipa or apk to fir.im
|
|
29
|
+
"upload ipa or apk to fir.im"
|
|
33
30
|
end
|
|
34
31
|
|
|
35
32
|
def self.authors
|
|
@@ -63,25 +60,25 @@ module Fastlane
|
|
|
63
60
|
description: "fir short",
|
|
64
61
|
optional: true),
|
|
65
62
|
FastlaneCore::ConfigItem.new(key: :force_pin_history,
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
63
|
+
env_name: "FIR_APP_FORCE_PIN_HISTORY",
|
|
64
|
+
description: "pin this release to download page",
|
|
65
|
+
default_value: false,
|
|
66
|
+
optional: true),
|
|
70
67
|
FastlaneCore::ConfigItem.new(key: :skip_update_icon,
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
68
|
+
env_name: "FIR_APP_SKIP_UPDATE_ICON",
|
|
69
|
+
description: "skip upload icon",
|
|
70
|
+
default_value: false,
|
|
71
|
+
optional: true),
|
|
75
72
|
FastlaneCore::ConfigItem.new(key: :specify_icon_file,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
73
|
+
env_name: "FIR_SPECIFY_ICON_FILE_PATH",
|
|
74
|
+
description: "APP ICON FILE PATH",
|
|
75
|
+
default_value: nil,
|
|
76
|
+
optional: true),
|
|
80
77
|
FastlaneCore::ConfigItem.new(key: :changelog,
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
78
|
+
env_name: "FIR_APP_CHANGELOG",
|
|
79
|
+
description: "changelog path or content",
|
|
80
|
+
default_value: nil,
|
|
81
|
+
optional: true),
|
|
85
82
|
FastlaneCore::ConfigItem.new(key: :open,
|
|
86
83
|
env_name: "FIR_APP_OPEN",
|
|
87
84
|
description: "true/false if open for everyone",
|
|
@@ -91,19 +88,6 @@ module Fastlane
|
|
|
91
88
|
env_name: "FIR_APP_PASSWORD",
|
|
92
89
|
description: "Set password for app",
|
|
93
90
|
default_value: nil,
|
|
94
|
-
optional: true),
|
|
95
|
-
FastlaneCore::ConfigItem.new(key: :switch_to_qiniu,
|
|
96
|
-
env_name: "FIR_SWITCH_TO_QINIU",
|
|
97
|
-
description: "switch to qiniu upload",
|
|
98
|
-
default_value: false,
|
|
99
|
-
optional: true),
|
|
100
|
-
FastlaneCore::ConfigItem.new(key: :dingtalk_access_token,
|
|
101
|
-
env_name: "FIR_DINGTALK_ACCESS_TOKEN",
|
|
102
|
-
description: "dingtalk_access_token",
|
|
103
|
-
optional: true),
|
|
104
|
-
FastlaneCore::ConfigItem.new(key: :dingtalk_custom_message,
|
|
105
|
-
env_name: "FIR_DINGTALK_CUSTOM_MESSAGE",
|
|
106
|
-
description: "dingtalk custom message",
|
|
107
91
|
optional: true)
|
|
108
92
|
|
|
109
93
|
]
|
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:
|
|
4
|
+
version: 2.0.0.beta2
|
|
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-11-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.0.beta2
|
|
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.0.beta2
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: pry
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -191,11 +191,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
191
191
|
version: '0'
|
|
192
192
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
193
193
|
requirements:
|
|
194
|
-
- - "
|
|
194
|
+
- - ">"
|
|
195
195
|
- !ruby/object:Gem::Version
|
|
196
|
-
version:
|
|
196
|
+
version: 1.3.1
|
|
197
197
|
requirements: []
|
|
198
|
-
rubygems_version: 3.0.
|
|
198
|
+
rubygems_version: 3.0.1
|
|
199
199
|
signing_key:
|
|
200
200
|
specification_version: 4
|
|
201
201
|
summary: upload ipa or apk to fir.im
|