Sha256: 8b489e06b257900a8a9276d20ce3e773353135edf9e4914f794d0066580fcc9a
Contents?: true
Size: 313 Bytes
Versions: 11
Compression:
Stored size: 313 Bytes
Contents
module Alchemy class EssenceFile < ActiveRecord::Base attr_accessible :title, :css_class, :attachment_id belongs_to :attachment acts_as_essence ingredient_column: 'attachment' def preview_text(max=30) return "" if attachment.blank? attachment.name.to_s[0..max-1] end end end
Version data entries
11 entries across 11 versions & 1 rubygems