Sha256: 2e32419775ef63b61670e4ba97bf51c798ed7e7094c0dcc5116279105c4fc0f1
Contents?: true
Size: 284 Bytes
Versions: 4
Compression:
Stored size: 284 Bytes
Contents
class Photo < ActiveRecord::Base belongs_to :person has_attached_file :image, styles: { medium: '640x480>', thumb: '160x120>' }, default_url: 'missing.png' validates_attachment :image, content_type: { content_type: ["image/jpg", "image/jpeg", "image/png", "image/gif"] } end
Version data entries
4 entries across 4 versions & 1 rubygems