Sha256: 84328025cb2829e180cfb7f4e3b73d3a75eb09115fd12b1129acb90db56d4819

Contents?: true

Size: 492 Bytes

Versions: 34

Compression:

Stored size: 492 Bytes

Contents

# encoding: utf-8
module Spotlight
  ##
  # Exhibit and browse category custom mastheads
  class MastheadUploader < CarrierWave::Uploader::Base
    include CarrierWave::MiniMagick
    storage Spotlight::Engine.config.uploader_storage

    version :cropped do
      process crop: :image ## Crops this version based on original image
      process resize_to_fill: [1800, 180]
    end

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

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
blacklight-spotlight-0.20.3 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.20.2 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.20.1 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.20.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.19.2 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.19.1 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.19.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.18.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.17.1 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.17.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.16.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.15.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.14.2 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.14.1 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.14.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.13.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.12.1 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.12.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.11.0 app/uploaders/spotlight/masthead_uploader.rb
blacklight-spotlight-0.10.3 app/uploaders/spotlight/masthead_uploader.rb