class S3DataPacker::Sources::S3Bucket

Public Instance Methods

each() { |key| ... } click to toggle source
# File lib/s3_data_packer/sources/s3_bucket.rb, line 9
def each(&block)
  each_key do |key|
    yield key
  end
end
fetch(key) click to toggle source
# File lib/s3_data_packer/sources/s3_bucket.rb, line 15
def fetch(key)
  download(key)
end
name() click to toggle source
# File lib/s3_data_packer/sources/s3_bucket.rb, line 5
def name
  "s3://#{bucket_name}/#{path}"
end