fastlane-plugin-google_drive 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 30d2b5d4ee557a37aff09d19480e54a5e753db7884ff28a86c6883c70beaf3be
4
- data.tar.gz: 6d483a3e86aa46e5465b889fb747248791a3056dffe9c1e1e35e4c6e2c3f3369
3
+ metadata.gz: ff3d3aa116c71368f5af60be0dc72657c6e4fdb26d78fbc1a9f271912dd55b52
4
+ data.tar.gz: b29d5c43399aac7e73cc0781dc7b23c50fe164397459b8ea77259433f69367c9
5
5
  SHA512:
6
- metadata.gz: 7ed4f90117520615665e7315ac9846ab8dad0f3ba43a7ffe0343199d9a282c46c68d949d9d4e3d6098a4a1b429af72805a554fc74768b58daf0610934c773453
7
- data.tar.gz: a49415ca0fa9ee4d6ce473493ea8828fdafb96cb63d9f3533f91682a0ce189504dd5cd1c429b6ecb3f0cdbf741eb711a35dc411e1303f91f139ca5d6ce8a6f8e
6
+ metadata.gz: 8cb8683819d407453d06260467319f86f81989d144464a97e5fcea93dd51bcd08ac7e8a147829d0bfd3110525a027f31c762b241c79c4cbe8aa2e9c830954092
7
+ data.tar.gz: a71c29d80c84271aec2a2e3315cfff48f2387ba6e289315f0b19d93b3f870b226805bbc998f5b80bc008097ae08d018459319f22b96e5d49815ea2fb9674d380
data/README.md CHANGED
@@ -2,7 +2,9 @@
2
2
 
3
3
  [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-google_drive)
4
4
  [![Gem Version Badge](https://badge.fury.io/rb/fastlane-plugin-google_drive.svg)](https://badge.fury.io/rb/fastlane-plugin-google_drive)
5
- [![Build Status](https://travis-ci.org/bskim45/fastlane-plugin-google_drive.svg?branch=master)](https://travis-ci.org/bskim45/fastlane-plugin-google_drive)
5
+ [![Build Status](https://travis-ci.com/bskim45/fastlane-plugin-google_drive.svg?branch=master)](https://travis-ci.com/bskim45/fastlane-plugin-google_drive)
6
+ [![Test Coverage](https://api.codeclimate.com/v1/badges/681ab1f5c19ca029dff4/test_coverage)](https://codeclimate.com/github/bskim45/fastlane-plugin-google_drive/test_coverage)
7
+ [![security](https://hakiri.io/github/bskim45/fastlane-plugin-google_drive/master.svg)](https://hakiri.io/github/bskim45/fastlane-plugin-google_drive/master)
6
8
 
7
9
  ## Getting Started
8
10
 
@@ -14,6 +16,11 @@ fastlane add_plugin google_drive
14
16
 
15
17
  ## About google_drive
16
18
 
19
+ > Please refer to [this guide](https://github.com/gimite/google-drive-ruby/blob/master/doc/authorization.md) to create an Google Drive credential.
20
+
21
+ Upload files to Google Drive folder.
22
+ > Aliases for this action - `google_drive_upload` and `upload_google_drive` will be deprecated in next version.
23
+
17
24
  ```ruby
18
25
  upload_to_google_drive(
19
26
  drive_keyfile: 'drive_key.json',
@@ -23,8 +30,7 @@ upload_to_google_drive(
23
30
  )
24
31
  ```
25
32
 
26
- Upload files to Google Drive folder.
27
- You can also use `google_drive_upload` or `upload_google_drive` as aliases.
33
+ Create new Google Drive folder
28
34
 
29
35
  ```ruby
30
36
  create_google_drive_folder(
@@ -34,8 +40,6 @@ create_google_drive_folder(
34
40
  )
35
41
  ```
36
42
 
37
- Create new Google Drive folder
38
-
39
43
  Download feature is not implemented yet. PR is always welcome.
40
44
 
41
45
  ## Example
@@ -76,4 +80,4 @@ _fastlane_ is the easiest way to automate beta deployments and releases for your
76
80
 
77
81
  The MIT License (MIT)
78
82
 
79
- Copyright (c) 2018 Bumsoo Kim (<https://bsk.im>)
83
+ Copyright (c) 2019 Bumsoo Kim (<https://bsk.im>)
@@ -9,6 +9,16 @@ module Fastlane
9
9
  def self.description
10
10
  "Alias for the `upload_to_google_drive` action"
11
11
  end
12
+
13
+ def self.category
14
+ :deprecated
15
+ end
16
+
17
+ def self.deprecated_notes
18
+ [
19
+ "Please use `upload_to_google_drive` instead."
20
+ ].join("\n")
21
+ end
12
22
  end
13
23
  end
14
24
  end
@@ -9,6 +9,16 @@ module Fastlane
9
9
  def self.description
10
10
  "Alias for the `upload_to_google_drive` action"
11
11
  end
12
+
13
+ def self.category
14
+ :deprecated
15
+ end
16
+
17
+ def self.deprecated_notes
18
+ [
19
+ "Please use `upload_to_google_drive` instead."
20
+ ].join("\n")
21
+ end
12
22
  end
13
23
  end
14
24
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module GoogleDrive
3
- VERSION = "0.4.0"
3
+ VERSION = "0.4.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-google_drive
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bumsoo Kim
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-01-14 00:00:00.000000000 Z
11
+ date: 2019-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google_drive
@@ -184,7 +184,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
184
  - !ruby/object:Gem::Version
185
185
  version: '0'
186
186
  requirements: []
187
- rubygems_version: 3.0.2
187
+ rubyforge_project:
188
+ rubygems_version: 2.7.7
188
189
  signing_key:
189
190
  specification_version: 4
190
191
  summary: Upload files to Google Drive