Sha256: 30f4b89379e055c43b32368703fb8d7ca42984bfbf37c782f5d9ffe8a2fc9404

Contents?: true

Size: 1.83 KB

Versions: 18

Compression:

Stored size: 1.83 KB

Contents

# encoding: utf-8

class <%= column.camelize %>Uploader < CarrierWave::Uploader::Base

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

  # Include the Sprockets helpers for Rails 3.1+ asset pipeline compatibility:
  ## Seems to be gone in Rails 4.0 ???
  ## include Sprockets::Helpers::RailsHelper
  ## include Sprockets::Helpers::IsolatedHelper

  # Choose what kind of storage to use for this uploader:
  storage :file
  # 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
    "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:
  #   # ActionController::Base.helpers.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 :resize_to_limit => [100, 100]
  end
  version :carousel do
    process :resize_to_fill => [600, 400]
  end
  version :display do
    process :resize_to_limit => [600, 600]
  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

18 entries across 18 versions & 1 rubygems

Version Path
bootswatch_rails-3.2.0.11 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.10 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.9 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.8 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.7 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.6 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.5 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.4 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.3 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.2 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.2.0.1 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.1.1.18 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.1.1.17 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.1.1.16 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.1.1.15 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.1.1.14 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.1.1.13 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb
bootswatch_rails-3.1.1.11 lib/generators/bootswatch_rails/carrierwave/templates/picture_uploader.rb