Sha256: 2692cbeb15aeac9d17c757332ded6ccb56a6cf80187be262a543b3944193fab5

Contents?: true

Size: 1.76 KB

Versions: 12

Compression:

Stored size: 1.76 KB

Contents

# encoding: utf-8

class Vouchers::PhotoUploader < CarrierWave::Uploader::Base

  def extension_white_list
    %w(jpg jpeg gif png)
  end

  # Include RMagick or MiniMagick support:
  # include CarrierWave::RMagick
  # include CarrierWave::MiniMagick

  # Include the Sprockets helpers for Rails 3.1+ asset pipeline compatibility:
  # include Sprockets::Helpers::RailsHelper
  # include Sprockets::Helpers::IsolatedHelper

  # Choose what kind of storage to use for this uploader:
  
  # storage :fog

  # Override the directory where uploaded files will be stored.
  # This is a sensible default for uploaders that are meant to be mounted:
  def store_dir
    "system/uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
  end

  def cache_dir
    "system/uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
  end

  # Provide a default URL as a default if there hasn't been a file uploaded:
  # def default_url
  #   # For Rails 3.1+ asset pipeline compatibility:
  #   # asset_path("fallback/" + [version_name, "default.png"].compact.join('_'))
  #
  #   "/images/fallback/" + [version_name, "default.png"].compact.join('_')
  # end

  # Process files as they are uploaded:
  # process :scale => [200, 300]
  #
  # def scale(width, height)
  #   # do something
  # end

  # Create different versions of your uploaded files:
  # version :thumb do
  #   process :scale => [50, 50]
  # end

  # Add a white list of extensions which are allowed to be uploaded.
  # For images you might use something like this:
  # def extension_white_list
  #   %w(jpg jpeg gif png)
  # end

  # Override the filename of the uploaded files:
  # Avoid using model.id or version_name here, see uploader/store.rb for details.
  # def filename
  #   "something.jpg" if original_filename
  # end

end

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
mix-rails-0.25.1 mix-rails-vouchers/app/uploaders/vouchers/photo_uploader.rb
mix-rails-vouchers-0.25.1 app/uploaders/vouchers/photo_uploader.rb
mix-rails-0.25.0 mix-rails-vouchers/app/uploaders/vouchers/photo_uploader.rb
mix-rails-vouchers-0.25.0 app/uploaders/vouchers/photo_uploader.rb
mix-rails-0.24.1 mix-rails-vouchers/app/uploaders/vouchers/photo_uploader.rb
mix-rails-vouchers-0.24.1 app/uploaders/vouchers/photo_uploader.rb
mix-rails-0.24.0 mix-rails-vouchers/app/uploaders/vouchers/photo_uploader.rb
mix-rails-vouchers-0.24.0 app/uploaders/vouchers/photo_uploader.rb
mix-rails-0.23.1 mix-rails-vouchers/app/uploaders/vouchers/photo_uploader.rb
mix-rails-vouchers-0.23.1 app/uploaders/vouchers/photo_uploader.rb
mix-rails-0.23.0 mix-rails-vouchers/app/uploaders/vouchers/photo_uploader.rb
mix-rails-vouchers-0.23.0 app/uploaders/vouchers/photo_uploader.rb