Sha256: 351f0386dcc257f4d2f8d42f6d13a4e5881b61e441cfb2a6422214bf0c687936
Contents?: true
Size: 373 Bytes
Versions: 13
Compression:
Stored size: 373 Bytes
Contents
class Banner < ActiveRecord::Base # Scopes, attachments, etc. include Forge::Reorderable scope :published, where(:published => true) has_attached_file :photo, :styles => {:banner => "800x800>", :thumbnail => "120x108#"}, :default_style => :banner can_use_asset_for :photo # Validations validates_presence_of :title validates_attachment_presence :photo end
Version data entries
13 entries across 13 versions & 1 rubygems