lib/stashify/file/google/cloud/storage.rb in stashify-google-cloud-storage-3.1.0 vs lib/stashify/file/google/cloud/storage.rb in stashify-google-cloud-storage-3.1.1
- old
+ new
@@ -4,9 +4,13 @@
module Stashify
class File
module Google
module Cloud
+ # An implementation for interacting with files in Google Cloud
+ # Storage buckets. The constructor needs an instance of
+ # Google::Cloud::Storage::Bucket in order to know which bucket
+ # to interact with.
class Storage < Stashify::File
def initialize(bucket:, path:)
@bucket = bucket
super(path: path)
end