Sha256: 985a4d063c993c44390e3031eea1b99723e2a442bb915daf4d3ba9329278f0b3
Contents?: true
Size: 268 Bytes
Versions: 1
Compression:
Stored size: 268 Bytes
Contents
module Redshop class Product < ActiveRecord::Base belongs_to :category has_attached_file :image, styles: { medium: "300x300>" }, default_url: "/images/:style/missing.png" validates_attachment_content_type :image, content_type: /\Aimage\/.*\Z/ end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
redshop-0.0.1 | app/models/redshop/product.rb |