fastlane-plugin-fir_cli 2.0.0 → 2.0.0.1

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: 6004cd970eb10eec6f1190fa2fd6d3d41a9fd1870660d9afa4f71d11f06deed1
4
- data.tar.gz: a13e38d1d014f917f80c09958689e0c8fe8cd63b28cebed211872ac84229df6f
3
+ metadata.gz: 368235c2b43095b245acbb49baa71803bbb72ac8d5c572d4c9c9be4d48d60dfc
4
+ data.tar.gz: 83821430c1ce49fc87d682552a475099804acf9e4aef9d191ef9b9925edf5a5a
5
5
  SHA512:
6
- metadata.gz: a446ccb053831f6eb71c0ad188d10efe3e01f7ee60953de99eda6f6157488891c753e7d2bfcc11c2b846d99f4613cdadd52cc1fad395799b2bb982b782b746af
7
- data.tar.gz: 26b36b6ce7fe6d307457cba4a9525759a25a9fe6a4ce12c715c0ce7fa520506290d1552afd019c8f6fa8a298a276501f65cab34beb42c4905ac023cbcc278137
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
- env_name: "FIR_APP_FORCE_PIN_HISTORY",
64
- description: "pin this release to download page",
65
- default_value: false,
66
- optional: true),
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
- env_name: "FIR_APP_SKIP_UPDATE_ICON",
69
- description: "skip upload icon",
70
- default_value: false,
71
- optional: true),
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
- env_name: "FIR_SPECIFY_ICON_FILE_PATH",
74
- description: "APP ICON FILE PATH",
75
- default_value: nil,
76
- optional: true),
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
- env_name: "FIR_APP_CHANGELOG",
79
- description: "changelog path or content",
80
- default_value: nil,
81
- optional: true),
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
  ]
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module FirCli
3
- VERSION = "2.0.0"
3
+ VERSION = "2.0.0.1"
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: 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-27 00:00:00.000000000 Z
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.beta2
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.beta2
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.1
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