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: 68951011087645b7f93a4fa8906d4092d4ccbcb6
4
- data.tar.gz: 64ca33ba95118baf5e1782419b7ab88962fbe577
3
+ metadata.gz: 74aefd417303fbc0f602a6b17c1985f1e8fe65c3
4
+ data.tar.gz: cf245deaa6e352971143857848a30291f0dd868a
5
5
  SHA512:
6
- metadata.gz: c4dd31ac372dc5d4ab7b339a139ac1abe4ac8f10a74d9b58aeac82496b627c8821847212068948c8307ce47d39fadeae0ff09a24bf4dde2ba9673ca8c9f2b3f8
7
- data.tar.gz: 362f3dbd662f0b529eb83fd0d0879ca8be58567ffacf5fa72b2d0c1298f81201026b7185fa667e9f693ce33b0801a8aa54042bfde1f39b79be8335ea28fb3e0d
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: :keychain,
230
- env_name: 'DROPBOX_TOKEN',
231
- description: "Provide your app's App Token or create a new app at https://www.dropbox.com/developers if you don't have an app yet.",
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 Key or create a new app at https://www.dropbox.com/developers if you don't have an app yet.") unless File.exist?(value)
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',
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module PublishDropbox
3
- VERSION = "0.1.3"
3
+ VERSION = "0.1.4"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-publish_dropbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tommyvanvliet