class Sluice::Storage::S3::ManifestScope
Legitimate manifest scopes:
-
:filename - store only the filename
in the manifest
-
:relpath - store the relative path
to the file in the manifest
-
:abspath - store the absolute path
to the file in the manifest
-
:bucket - store bucket PLUS absolute
path to the file in the manifest
TODO: add support for 2-4. Currently only 1 supported
Public Class Methods
valid?(val)
click to toggle source
# File lib/sluice/storage/s3/manifest.rb, line 39 def self.valid?(val) val.is_a?(Symbol) && @@scopes.include?(val) end