Sha256: 21722dbd94108b216c3c73e425470bda25e3a3adf81105ad20924b0bc0c320f4

Contents?: true

Size: 1.47 KB

Versions: 8

Compression:

Stored size: 1.47 KB

Contents

# encoding: utf-8
require 'carrierwave'

class Gamification::ImageUploader < CarrierWave::Uploader::Base

  # Include MiniMagick support

  # Override the directory where uploaded files will be stored.
  # This is a sensible default for uploaders that are meant to be mounted:

  include CarrierWave::MiniMagick
  include CarrierWave::RMagick
  include Cloudinary::CarrierWave

  # 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 :small do
    process :resize_to_fit => [150, 150]
  end

  version :icon64 do
    process :resize_to_fit => [64, 64]
  end
  version :icon32 do
    process :resize_to_fit => [32, 32]
  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

8 entries across 8 versions & 1 rubygems

Version Path
go_gamification-0.0.20 app/uploaders/gamification/image_uploader.rb
go_gamification-0.0.19 app/uploaders/gamification/image_uploader.rb
go_gamification-0.0.18 app/uploaders/gamification/image_uploader.rb
go_gamification-0.0.17 app/uploaders/gamification/image_uploader.rb
go_gamification-0.0.16 app/uploaders/gamification/image_uploader.rb
go_gamification-0.0.15 app/uploaders/gamification/image_uploader.rb
go_gamification-0.0.14 app/uploaders/gamification/image_uploader.rb
go_gamification-0.0.13 app/uploaders/gamification/image_uploader.rb