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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a0c1192c3f41d52d6ccc49ac9df3e5d1ea1b55106ae727ee39a96a0655e272bc
4
- data.tar.gz: 7f3ba63a53cd140b217f28b46ed48e119d2ab600f78487e65b72da4ec64a3bef
3
+ metadata.gz: e40a048a919d63a8eb6946f75cb752cc7a2c046f988f1871c2408c9776170c7a
4
+ data.tar.gz: 1d5eda2a8914074cc9d308a218d59b916e429fae119cc8a73c5314c03bc451d4
5
5
  SHA512:
6
- metadata.gz: 39dcc6a20a64d332c4ca71ee05763a669b4f12758be03f149d6cd80e8988e4bd0c31c831c2d6c8a6319459184348d0be5d74cd3c9fb80e16253258fd149ea0a8
7
- data.tar.gz: fbac47ef5a0b29688706c5a78272849589e491587445c477e6ce356d893b240d57e2f5771a7ab73bc6339c70edec89dfef57ed546c2c46f8986466c5ce894624
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 google_cloud_storage
16
+ fastlane add_plugin google_cloud_storage_rebooted
17
17
  ```
18
18
 
19
19
  ## About google_cloud_storage
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module GoogleCloudStorageRebooted
3
+ VERSION = "1.0.5"
4
+ end
5
+ end
@@ -1,7 +1,7 @@
1
- require 'fastlane/plugin/google_cloud_storage/version'
1
+ require 'fastlane/plugin/google_cloud_storage_rebooted/version'
2
2
 
3
3
  module Fastlane
4
- module GoogleCloudStorage
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::GoogleCloudStorage.all_classes.each do |current|
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.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/google_cloud_storage.rb
120
- - lib/fastlane/plugin/google_cloud_storage/actions/google_cloud_storage_check_file_action.rb
121
- - lib/fastlane/plugin/google_cloud_storage/actions/google_cloud_storage_download_action.rb
122
- - lib/fastlane/plugin/google_cloud_storage/actions/google_cloud_storage_upload_action.rb
123
- - lib/fastlane/plugin/google_cloud_storage/helper/google_cloud_storage_helper.rb
124
- - lib/fastlane/plugin/google_cloud_storage/version.rb
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"
@@ -1,5 +0,0 @@
1
- module Fastlane
2
- module GoogleCloudStorage
3
- VERSION = "1.0.0"
4
- end
5
- end