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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78fa96f65aa5c66b6130a5f2f105e5b82329c54946e05d217a2adcb1033f016c
4
- data.tar.gz: 6652e0fc2e4fa21573ba07a581f9a3b85ed2e05502dbc661f1d6c06400ee5afc
3
+ metadata.gz: a8c6b09db6b60d6187fe0d3d7936329a5cef763595744d87d22268ec9f517140
4
+ data.tar.gz: '0901cdc6e8644621e9640d2019a47ebbb9a76a01a76e8ed8ebf053519a997c11'
5
5
  SHA512:
6
- metadata.gz: 3981a55dbe89b2cab60b1ea84974d9163734af40b9ae83ba3fecb38b0ed434950ec418ecf367b9769b311026ce7ef6d2f5baa6198c41cbd420370eedc8d5eb83
7
- data.tar.gz: 5f149098c7172a36a11bfc2716f7cd803217e90e825fd1f47f1394795f5a8e54baa24df3c37ad6f2c76d20bf53b04804829916f1b2b744b3e9d9e3a912372862
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
- ![luckin](luckin_coffee.png)
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 using fir-cli (This plugin is maintained by fir.im official)"
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
- env_name: "FIR_APP_FORCE_PIN_HISTORY",
67
- description: "pin this release to download page",
68
- default_value: false,
69
- optional: true),
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
- env_name: "FIR_APP_SKIP_UPDATE_ICON",
72
- description: "skip upload icon",
73
- default_value: false,
74
- optional: true),
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
- env_name: "FIR_SPECIFY_ICON_FILE_PATH",
77
- description: "APP ICON FILE PATH",
78
- default_value: nil,
79
- optional: true),
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
- env_name: "FIR_APP_CHANGELOG",
82
- description: "changelog path or content",
83
- default_value: nil,
84
- optional: true),
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
  ]
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module FirCli
3
- VERSION = "1.0.0"
3
+ VERSION = "2.0.0.beta2"
4
4
  end
5
5
  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: 1.0.0
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-12-13 00:00:00.000000000 Z
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.1
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.1
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: '0'
196
+ version: 1.3.1
197
197
  requirements: []
198
- rubygems_version: 3.0.3
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