We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
You can set the storage type dynamically by passing in a class method of your uploader to the storage method.
Example:
class AvatarUploader < CarrierWave::Uploader::Base def self.set_storage if Configuration.use_cloudfiles? :fog else :file end end storage set_storage end