fastlane-plugin-google_cloud_storage_rebooted 1.0.0 → 1.0.5
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 +4 -4
- data/README.md +1 -1
- data/lib/fastlane/plugin/google_cloud_storage_rebooted/version.rb +5 -0
- data/lib/fastlane/plugin/{google_cloud_storage.rb → google_cloud_storage_rebooted.rb} +3 -3
- metadata +11 -11
- data/lib/fastlane/plugin/google_cloud_storage/version.rb +0 -5
- /data/lib/fastlane/plugin/{google_cloud_storage → google_cloud_storage_rebooted}/actions/google_cloud_storage_check_file_action.rb +0 -0
- /data/lib/fastlane/plugin/{google_cloud_storage → google_cloud_storage_rebooted}/actions/google_cloud_storage_download_action.rb +0 -0
- /data/lib/fastlane/plugin/{google_cloud_storage → google_cloud_storage_rebooted}/actions/google_cloud_storage_upload_action.rb +0 -0
- /data/lib/fastlane/plugin/{google_cloud_storage → google_cloud_storage_rebooted}/helper/google_cloud_storage_helper.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e40a048a919d63a8eb6946f75cb752cc7a2c046f988f1871c2408c9776170c7a
|
4
|
+
data.tar.gz: 1d5eda2a8914074cc9d308a218d59b916e429fae119cc8a73c5314c03bc451d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c9344cde8751a3092f96ed887f3e5ef5d2f90cb2f9f4eb821a2491405209f7a2b5f25cfb757813b0d14a684746bb507d22b7122624a41a11a63988e4f741cc3
|
7
|
+
data.tar.gz: 6a143975330ab747c3b6d234611349317e28f491f5042f051cb328385cc28720cb4102296d49ba942e7d5b34e47cf3c4b4664f92e06ca09abd57b88be39f5a25
|
data/README.md
CHANGED
@@ -13,7 +13,7 @@ We are currently trying to contact the owner of the origin fork to contribute un
|
|
13
13
|
This project is a [fastlane](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-google_cloud_storage`, add it to your project by running:
|
14
14
|
|
15
15
|
```bash
|
16
|
-
fastlane add_plugin
|
16
|
+
fastlane add_plugin google_cloud_storage_rebooted
|
17
17
|
```
|
18
18
|
|
19
19
|
## About google_cloud_storage
|
@@ -1,7 +1,7 @@
|
|
1
|
-
require 'fastlane/plugin/
|
1
|
+
require 'fastlane/plugin/google_cloud_storage_rebooted/version'
|
2
2
|
|
3
3
|
module Fastlane
|
4
|
-
module
|
4
|
+
module GoogleCloudStorageRebooted
|
5
5
|
# Return all .rb files inside the "actions" and "helper" directory
|
6
6
|
def self.all_classes
|
7
7
|
Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
|
@@ -11,6 +11,6 @@ end
|
|
11
11
|
|
12
12
|
# By default we want to import all available actions and helpers
|
13
13
|
# A plugin can contain any number of actions and plugins
|
14
|
-
Fastlane::
|
14
|
+
Fastlane::GoogleCloudStorageRebooted.all_classes.each do |current|
|
15
15
|
require current
|
16
16
|
end
|
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-google_cloud_storage_rebooted
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Huang
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
date: 2024-11-11 00:00:00.000000000 Z
|
@@ -108,7 +108,7 @@ dependencies:
|
|
108
108
|
- - ">="
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: 2.0.5
|
111
|
-
description:
|
111
|
+
description:
|
112
112
|
email: s20026352@gmail.com
|
113
113
|
executables: []
|
114
114
|
extensions: []
|
@@ -116,17 +116,17 @@ extra_rdoc_files: []
|
|
116
116
|
files:
|
117
117
|
- LICENSE
|
118
118
|
- README.md
|
119
|
-
- lib/fastlane/plugin/
|
120
|
-
- lib/fastlane/plugin/
|
121
|
-
- lib/fastlane/plugin/
|
122
|
-
- lib/fastlane/plugin/
|
123
|
-
- lib/fastlane/plugin/
|
124
|
-
- lib/fastlane/plugin/
|
119
|
+
- lib/fastlane/plugin/google_cloud_storage_rebooted.rb
|
120
|
+
- lib/fastlane/plugin/google_cloud_storage_rebooted/actions/google_cloud_storage_check_file_action.rb
|
121
|
+
- lib/fastlane/plugin/google_cloud_storage_rebooted/actions/google_cloud_storage_download_action.rb
|
122
|
+
- lib/fastlane/plugin/google_cloud_storage_rebooted/actions/google_cloud_storage_upload_action.rb
|
123
|
+
- lib/fastlane/plugin/google_cloud_storage_rebooted/helper/google_cloud_storage_helper.rb
|
124
|
+
- lib/fastlane/plugin/google_cloud_storage_rebooted/version.rb
|
125
125
|
homepage: https://github.com/ShiriNmi1520/fastlane-plugin-google_cloud_storage
|
126
126
|
licenses:
|
127
127
|
- MIT
|
128
128
|
metadata: {}
|
129
|
-
post_install_message:
|
129
|
+
post_install_message:
|
130
130
|
rdoc_options: []
|
131
131
|
require_paths:
|
132
132
|
- lib
|
@@ -142,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
142
|
version: '0'
|
143
143
|
requirements: []
|
144
144
|
rubygems_version: 3.2.3
|
145
|
-
signing_key:
|
145
|
+
signing_key:
|
146
146
|
specification_version: 4
|
147
147
|
summary: "Google Cloud Storage plugin for fastlane that implements upload & download
|
148
148
|
operation.\U0001F680"
|
File without changes
|
File without changes
|
File without changes
|