Sha256: 4c272634265b51151dd2f93401186c72f400d5a3c1ae67d9ef03ac50255268ad
Contents?: true
Size: 583 Bytes
Versions: 10
Compression:
Stored size: 583 Bytes
Contents
# frozen_string_literal: true module Spree::Image::ActiveStorageAttachment extend ActiveSupport::Concern include Spree::ActiveStorageAdapter delegate :width, :height, to: :attachment, prefix: true included do has_attachment :attachment, styles: { mini: '48x48>', small: '400x400>', product: '680x680>', large: '1200x1200>' }, default_style: :product validates :attachment, presence: true validate :attachment_is_an_image end end
Version data entries
10 entries across 10 versions & 1 rubygems