Sha256: 12dfd78a556d46637b16ccaeeea40aa0e6c8b7a4a5b0573b74fd9dbd39aa7b96
Contents?: true
Size: 875 Bytes
Versions: 1
Compression:
Stored size: 875 Bytes
Contents
module Storage class Config class << self # Set a storage strategy based on its registered name. # # Storage::Config.strategy = :s3 # attr_accessor :strategy # Set a storage class. # # Storage::Config.strategy_class = Storage::Strategies::S3 # attr_accessor :strategy_class # Set the S3 default bucket. attr_accessor :bucket # Set the S3 access key. attr_accessor :access_key # Set the S3 secret key attr_accessor :secret_key # Set the FileSystem storage path. attr_accessor :path end # Override setter so we can automatically define the strategy class # based on its registered name. def self.strategy=(strategy) self.strategy_class = eval(Storage::Strategies::STRATEGIES[strategy]) @strategy = strategy end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
storage-0.1.0 | lib/storage/config.rb |