fastlane-plugin-publish_dropbox 0.1.3 → 0.1.4
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74aefd417303fbc0f602a6b17c1985f1e8fe65c3
|
|
4
|
+
data.tar.gz: cf245deaa6e352971143857848a30291f0dd868a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2796e4f3835db9ba456417a2bae4fe4d6237df16964c5eb66782ed7e2b655b7663ff39e6781db3ed83e5474a34f71418cbf54f44ddfb3ab187b79c6b29655ac0
|
|
7
|
+
data.tar.gz: 8cc873c84a0c979aeac5073f9d856079a77eee6e94460d5239bce8bba0eec3ba98c74a7f524b7a3a4f3878e52bd96d9f26c33b7d0bd5d2789bb6d0e6b123ee43
|
|
@@ -226,13 +226,13 @@ module Fastlane
|
|
|
226
226
|
verify_block: proc do |value|
|
|
227
227
|
UI.user_error!("App Secret not specified for Dropbox app. Provide your app's App Secret or create a new app at https://www.dropbox.com/developers if you don't have an app yet.") unless value && !value.empty?
|
|
228
228
|
end),
|
|
229
|
-
FastlaneCore::ConfigItem.new(key: :
|
|
230
|
-
env_name: '
|
|
231
|
-
description:
|
|
229
|
+
FastlaneCore::ConfigItem.new(key: :app_token,
|
|
230
|
+
env_name: 'DROPBOX_APP_TOKEN',
|
|
231
|
+
description: 'App Token of your Dropbox app',
|
|
232
232
|
type: String,
|
|
233
233
|
optional: true,
|
|
234
234
|
verify_block: proc do |value|
|
|
235
|
-
UI.user_error!("App Token not specified for Dropbox app. Provide your app's App
|
|
235
|
+
UI.user_error!("App Token not specified for Dropbox app. Provide your generated app's App Token or create a new app at https://www.dropbox.com/developers if you don't have an app yet.") unless value && !value.empty?
|
|
236
236
|
end),
|
|
237
237
|
FastlaneCore::ConfigItem.new(key: :keychain,
|
|
238
238
|
env_name: 'DROPBOX_KEYCHAIN',
|