fastlane-plugin-google_cloud_storage_rebooted 0.1.2 → 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: 0bd7b393a6a0d4d6c88bbef719523073cb9646470f62240e7b4acfd41ef0ad00
4
- data.tar.gz: 31a46149b827e9a2f5410379b36155ca1ab3307b0638a9327a85315930e4f948
3
+ metadata.gz: e40a048a919d63a8eb6946f75cb752cc7a2c046f988f1871c2408c9776170c7a
4
+ data.tar.gz: 1d5eda2a8914074cc9d308a218d59b916e429fae119cc8a73c5314c03bc451d4
5
5
  SHA512:
6
- metadata.gz: 017df650113bbbbfa85eeb0224680782e55c4942a54c438a861bd593188a8a74114eda2c125ed92d3cdfc595a1b490698410d934861a5ede7954ac293d0acfe7
7
- data.tar.gz: 10bd5f66893c574e77d218a11620553c2a61176ebb8a22eabdc9b48e0d2a0aec5308a9e786dbedd67427a67f0bdd869513cbd59d063b35524699065f7996ca40
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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-google_cloud_storage_rebooted
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 1.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Huang
@@ -116,12 +116,12 @@ 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
@@ -1,5 +0,0 @@
1
- module Fastlane
2
- module GoogleCloudStorage
3
- VERSION = "0.1.2"
4
- end
5
- end